From 6ff4b0724760875699854af9d8747f5680f4b77f Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:50:59 +0000 Subject: [PATCH 1/2] chore: explicitly require "base64" gem --- lib/finch_api.rb | 1 + manifest.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/finch_api.rb b/lib/finch_api.rb index 45dd13fe..ca2d5527 100644 --- a/lib/finch_api.rb +++ b/lib/finch_api.rb @@ -3,6 +3,7 @@ # Standard libraries. # rubocop:disable Lint/RedundantRequireStatement require "English" +require "base64" require "cgi" require "date" require "erb" diff --git a/manifest.yaml b/manifest.yaml index 7853f4ab..a1fd74a9 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,5 +1,6 @@ dependencies: - English + - base64 - cgi - date - erb From 7ebaa4a0a8c82c47a30ef324a1202784d6d76e2b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:51:19 +0000 Subject: [PATCH 2/2] release: 0.1.0-alpha.36 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/finch_api/version.rb | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f9963500..a696b6a7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.35" + ".": "0.1.0-alpha.36" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c97d9fac..6a236e6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.36 (2025-11-20) + +Full Changelog: [v0.1.0-alpha.35...v0.1.0-alpha.36](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.35...v0.1.0-alpha.36) + +### Chores + +* explicitly require "base64" gem ([6ff4b07](https://github.com/Finch-API/finch-api-ruby/commit/6ff4b0724760875699854af9d8747f5680f4b77f)) + ## 0.1.0-alpha.35 (2025-11-09) Full Changelog: [v0.1.0-alpha.34...v0.1.0-alpha.35](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.34...v0.1.0-alpha.35) diff --git a/Gemfile.lock b/Gemfile.lock index a734e283..ca176206 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - finch-api (0.1.0.pre.alpha.35) + finch-api (0.1.0.pre.alpha.36) connection_pool GEM diff --git a/README.md b/README.md index 85ac440f..8fb8c932 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "finch-api", "~> 0.1.0.pre.alpha.35" +gem "finch-api", "~> 0.1.0.pre.alpha.36" ``` diff --git a/lib/finch_api/version.rb b/lib/finch_api/version.rb index 0b786986..c28d978b 100644 --- a/lib/finch_api/version.rb +++ b/lib/finch_api/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module FinchAPI - VERSION = "0.1.0.pre.alpha.35" + VERSION = "0.1.0.pre.alpha.36" end