From 51f70746949af0b1a806dedb193984828bbf0bdd Mon Sep 17 00:00:00 2001 From: Blake Erickson Date: Tue, 2 Dec 2025 10:48:22 -0700 Subject: [PATCH] DEV: Release version 2.1.0 --- CHANGELOG.md | 10 ++++++++++ lib/discourse_api/version.rb | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91b3fe4..120e5af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.1.0] - 2025-12-02 +### Changed +- Add support for `external_id` in topic creation +### Added +- Add get topic url by `external_id` + +## [2.0.1] - 2023-06-09 +### Removed +- Invite admin method removed + ## [2.0.0] - 2023-05-26 ### Changed - The package now requires ruby 2.7+ diff --git a/lib/discourse_api/version.rb b/lib/discourse_api/version.rb index b0b3513..16f4807 100644 --- a/lib/discourse_api/version.rb +++ b/lib/discourse_api/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module DiscourseApi - VERSION = "2.0.1" + VERSION = "2.1.0" end