Skip to content

Commit fd5a12d

Browse files
release: 0.1.0-alpha.5 (#81)
* chore(internal): version bump (#80) * chore: relocate internal modules (#82) * chore: more accurate type annotations for SDK internals (#83) * chore: update readme (#84) * release: 0.1.0-alpha.5 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 4583e5e commit fd5a12d

File tree

206 files changed

+3682
-3419
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+3682
-3419
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.4"
2+
".": "0.1.0-alpha.5"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.5 (2025-03-31)
4+
5+
Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
6+
7+
### Chores
8+
9+
* **internal:** version bump ([#80](https://github.com/Finch-API/finch-api-ruby/issues/80)) ([9dc9569](https://github.com/Finch-API/finch-api-ruby/commit/9dc9569385307fa31597a0da5ca0f5819925b3f7))
10+
* more accurate type annotations for SDK internals ([#83](https://github.com/Finch-API/finch-api-ruby/issues/83)) ([9cfaabd](https://github.com/Finch-API/finch-api-ruby/commit/9cfaabdde3e58f17d09edbc304f3810618d722af))
11+
* relocate internal modules ([#82](https://github.com/Finch-API/finch-api-ruby/issues/82)) ([899a7c0](https://github.com/Finch-API/finch-api-ruby/commit/899a7c0fdf4968dcc552fb5dedfb0c5809562b06))
12+
* update readme ([#84](https://github.com/Finch-API/finch-api-ruby/issues/84)) ([e868827](https://github.com/Finch-API/finch-api-ruby/commit/e868827d1be8683eaa7fb677e32dd189b2ec08c3))
13+
314
## 0.1.0-alpha.4 (2025-03-31)
415

516
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)

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.4)
14+
finch-api (0.1.0.pre.alpha.5)
1515
connection_pool
1616

1717
GEM

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ The underlying REST API documentation can be found on [developer.tryfinch.com](h
1212

1313
## Installation
1414

15-
To use this gem during the beta, install directly from GitHub with Bundler by adding the following to your application's `Gemfile`:
15+
To use this gem, install via Bundler by adding the following to your application's `Gemfile`:
1616

1717
```ruby
18-
gem "finch-api", git: "https://github.com/Finch-API/finch-api-ruby", branch: "main"
18+
gem "finch-api", "~> 0.1.0.pre.alpha.4"
1919
```
2020

2121
To fetch an initial copy of the gem:
@@ -24,12 +24,6 @@ To fetch an initial copy of the gem:
2424
bundle install
2525
```
2626

27-
To update the version used by your application when updates are pushed to GitHub:
28-
29-
```sh
30-
bundle update finch-api
31-
```
32-
3327
## Usage
3428

3529
```ruby

lib/finch-api.rb

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,21 @@
3636
# Package files.
3737
require_relative "finch-api/version"
3838
require_relative "finch-api/util"
39-
require_relative "finch-api/base_model"
40-
require_relative "finch-api/base_page"
39+
require_relative "finch-api/type/converter"
40+
require_relative "finch-api/type/unknown"
41+
require_relative "finch-api/type/boolean_model"
42+
require_relative "finch-api/type/enum"
43+
require_relative "finch-api/type/union"
44+
require_relative "finch-api/type/array_of"
45+
require_relative "finch-api/type/hash_of"
46+
require_relative "finch-api/type/base_model"
47+
require_relative "finch-api/type/base_page"
48+
require_relative "finch-api/type/request_parameters"
49+
require_relative "finch-api/type"
4150
require_relative "finch-api/request_options"
4251
require_relative "finch-api/errors"
43-
require_relative "finch-api/base_client"
44-
require_relative "finch-api/pooled_net_requester"
52+
require_relative "finch-api/transport/base_client"
53+
require_relative "finch-api/transport/pooled_net_requester"
4554
require_relative "finch-api/client"
4655
require_relative "finch-api/individuals_page"
4756
require_relative "finch-api/page"

0 commit comments

Comments
 (0)