diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 65f558e..cf72398 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.0" + ".": "2.0.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c46227..6b90ca3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 2.0.1 (2025-12-05) + +Full Changelog: [v2.0.0...v2.0.1](https://github.com/moderation-api/sdk-ruby/compare/v2.0.0...v2.0.1) + +### Documentation + +* updated readme ([a824572](https://github.com/moderation-api/sdk-ruby/commit/a8245722455e6486264a86e3e18d4bad516cc2f1)) + ## 2.0.0 (2025-12-05) Full Changelog: [v0.0.1...v2.0.0](https://github.com/moderation-api/sdk-ruby/compare/v0.0.1...v2.0.0) diff --git a/Gemfile.lock b/Gemfile.lock index 7bcfd1f..e7ec3ea 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - moderation_api (2.0.0) + moderation_api (2.0.1) connection_pool GEM diff --git a/README.md b/README.md index d4ae223..8481c8e 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,7 @@ -# Moderation API Ruby API library +# Moderation API Ruby library The Moderation API Ruby library provides convenient access to the Moderation API REST API from any Ruby 3.2.0+ application. It ships with comprehensive types & docstrings in Yard, RBS, and RBI – [see below](https://github.com/moderation-api/sdk-ruby#Sorbet) for usage with Sorbet. The standard library's `net/http` is used as the HTTP transport, with connection pooling via the `connection_pool` gem. -It is generated with [Stainless](https://www.stainless.com/). - ## Documentation Documentation for releases of this gem can be found [on RubyDoc](https://gemdocs.org/gems/moderation_api). @@ -17,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "moderation_api", "~> 2.0.0" +gem "moderation_api", "~> 2.0.1" ``` diff --git a/lib/moderation_api/version.rb b/lib/moderation_api/version.rb index f7aea9c..40f3800 100644 --- a/lib/moderation_api/version.rb +++ b/lib/moderation_api/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ModerationAPI - VERSION = "2.0.0" + VERSION = "2.0.1" end