From a8245722455e6486264a86e3e18d4bad516cc2f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20Dengs=C3=B8?= Date: Fri, 5 Dec 2025 16:47:49 +0100 Subject: [PATCH 1/2] docs: updated readme --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index d4ae223..f4b0fba 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). From adf4d19eee154036201071c320b72c0212d326e4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 5 Dec 2025 15:48:05 +0000 Subject: [PATCH 2/2] release: 2.0.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/moderation_api/version.rb | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) 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 f4b0fba..8481c8e 100644 --- a/README.md +++ b/README.md @@ -15,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