Skip to content

Commit 6092716

Browse files
release: 0.1.0-alpha.25 (#156)
* chore: update contribute.md * fix(internal): ensure sorbet test always runs serially * chore(internal): increase visibility of internal helper method * release: 0.1.0-alpha.25 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent ce69eaa commit 6092716

File tree

9 files changed

+23
-7
lines changed

9 files changed

+23
-7
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.24"
2+
".": "0.1.0-alpha.25"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.25 (2025-07-31)
4+
5+
Full Changelog: [v0.1.0-alpha.24...v0.1.0-alpha.25](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.24...v0.1.0-alpha.25)
6+
7+
### Bug Fixes
8+
9+
* **internal:** ensure sorbet test always runs serially ([007501f](https://github.com/Finch-API/finch-api-ruby/commit/007501f8faade4e909775c5c2de7f99b3e344bb7))
10+
11+
12+
### Chores
13+
14+
* **internal:** increase visibility of internal helper method ([66d0f39](https://github.com/Finch-API/finch-api-ruby/commit/66d0f3947c6724659efbd8d23890a5e5519be22c))
15+
* update contribute.md ([7d83851](https://github.com/Finch-API/finch-api-ruby/commit/7d8385183a2e4d9919780cd73a350431b27f4312))
16+
317
## 0.1.0-alpha.24 (2025-07-23)
418

519
Full Changelog: [v0.1.0-alpha.23...v0.1.0-alpha.24](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.23...v0.1.0-alpha.24)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ $ bundle exec rake test
7878

7979
## Linting and formatting
8080

81-
This repository uses [rubocop](https://github.com/rubocop/rubocop) for linting and formatting of `*.rb` and `*.rbi` files. [syntax_tree](https://github.com/ruby-syntax-tree/syntax_tree) is used for formatting `*.rbs` files.
81+
This repository uses [rubocop](https://github.com/rubocop/rubocop) for linting and formatting of `*.rb` files; And [syntax_tree](https://github.com/ruby-syntax-tree/syntax_tree) is used for formatting of both `*.rbi` and `*.rbs` files.
8282

8383
There are two separate type checkers supported by this library: [sorbet](https://github.com/sorbet/sorbet) and [steep](https://github.com/soutaro/steep) are used for verifying `*.rbi` and `*.rbs` files respectively.
8484

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.24"
20+
gem "finch-api", "~> 0.1.0.pre.alpha.25"
2121
```
2222

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

lib/finch_api/internal/transport/base_client.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def initialize(
365365
#
366366
# @raise [FinchAPI::Errors::APIError]
367367
# @return [Array(Integer, Net::HTTPResponse, Enumerable<String>)]
368-
private def send_request(request, redirect_count:, retry_count:, send_retry_header:)
368+
def send_request(request, redirect_count:, retry_count:, send_retry_header:)
369369
url, headers, max_retries, timeout = request.fetch_values(:url, :headers, :max_retries, :timeout)
370370
input = {**request.except(:timeout), deadline: FinchAPI::Internal::Util.monotonic_secs + timeout}
371371

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.24"
4+
VERSION = "0.1.0.pre.alpha.25"
55
end

rbi/finch_api/internal/transport/base_client.rbi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ module FinchAPI
213213
send_retry_header: T::Boolean
214214
).returns([Integer, Net::HTTPResponse, T::Enumerable[String]])
215215
end
216-
private def send_request(
216+
def send_request(
217217
request,
218218
redirect_count:,
219219
retry_count:,

sig/finch_api/internal/transport/base_client.rbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ module FinchAPI
9999
retry_count: Integer
100100
) -> Float
101101

102-
private def send_request: (
102+
def send_request: (
103103
FinchAPI::Internal::Transport::BaseClient::request_input request,
104104
redirect_count: Integer,
105105
retry_count: Integer,

test/finch_api/internal/sorbet_runtime_support_test.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
require_relative "../test_helper"
44

55
class FinchAPI::Test::SorbetRuntimeSupportTest < Minitest::Test
6+
extend Minitest::Serial
7+
68
i_suck_and_my_tests_are_order_dependent!
79

810
module E

0 commit comments

Comments
 (0)