Skip to content

Commit e127e2e

Browse files
release: 0.1.0-alpha.36 (#169)
* chore: explicitly require "base64" gem * release: 0.1.0-alpha.36 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent c92c41e commit e127e2e

File tree

7 files changed

+14
-4
lines changed

7 files changed

+14
-4
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.35"
2+
".": "0.1.0-alpha.36"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.1.0-alpha.36 (2025-11-20)
4+
5+
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)
6+
7+
### Chores
8+
9+
* explicitly require "base64" gem ([6ff4b07](https://github.com/Finch-API/finch-api-ruby/commit/6ff4b0724760875699854af9d8747f5680f4b77f))
10+
311
## 0.1.0-alpha.35 (2025-11-09)
412

513
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)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
finch-api (0.1.0.pre.alpha.35)
14+
finch-api (0.1.0.pre.alpha.36)
1515
connection_pool
1616

1717
GEM

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
1717
<!-- x-release-please-start-version -->
1818

1919
```ruby
20-
gem "finch-api", "~> 0.1.0.pre.alpha.35"
20+
gem "finch-api", "~> 0.1.0.pre.alpha.36"
2121
```
2222

2323
<!-- x-release-please-end -->

lib/finch_api.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Standard libraries.
44
# rubocop:disable Lint/RedundantRequireStatement
55
require "English"
6+
require "base64"
67
require "cgi"
78
require "date"
89
require "erb"

lib/finch_api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module FinchAPI
4-
VERSION = "0.1.0.pre.alpha.35"
4+
VERSION = "0.1.0.pre.alpha.36"
55
end

manifest.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
dependencies:
22
- English
3+
- base64
34
- cgi
45
- date
56
- erb

0 commit comments

Comments
 (0)