Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.4"
".": "0.1.0-alpha.5"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.1.0-alpha.5 (2025-03-31)

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)

### Chores

* **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))
* 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))
* 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))
* update readme ([#84](https://github.com/Finch-API/finch-api-ruby/issues/84)) ([e868827](https://github.com/Finch-API/finch-api-ruby/commit/e868827d1be8683eaa7fb677e32dd189b2ec08c3))

## 0.1.0-alpha.4 (2025-03-31)

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)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
finch-api (0.1.0.pre.alpha.4)
finch-api (0.1.0.pre.alpha.5)
connection_pool

GEM
Expand Down
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ The underlying REST API documentation can be found on [developer.tryfinch.com](h

## Installation

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

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

To fetch an initial copy of the gem:
Expand All @@ -24,12 +24,6 @@ To fetch an initial copy of the gem:
bundle install
```

To update the version used by your application when updates are pushed to GitHub:

```sh
bundle update finch-api
```

## Usage

```ruby
Expand Down
17 changes: 13 additions & 4 deletions lib/finch-api.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# frozen_string_literal: true

Check warning on line 1 in lib/finch-api.rb

View workflow job for this annotation

GitHub Actions / lint

Naming/FileName: The name of this source file (`finch-api.rb`) should use snake_case.

# We already ship the preferred sorbet manifests in the package itself.
# `tapioca` currently does not offer us a way to opt out of unnecessary compilation.
if Object.const_defined?(:Tapioca) && caller.chain([$0]).chain(ARGV).grep(/tapioca/)

Check warning on line 5 in lib/finch-api.rb

View workflow job for this annotation

GitHub Actions / lint

Style/SpecialGlobalVars: Prefer `$PROGRAM_NAME` over `$0`.
Warning.warn(
<<~WARN
\n
Expand Down Expand Up @@ -36,12 +36,21 @@
# Package files.
require_relative "finch-api/version"
require_relative "finch-api/util"
require_relative "finch-api/base_model"
require_relative "finch-api/base_page"
require_relative "finch-api/type/converter"
require_relative "finch-api/type/unknown"
require_relative "finch-api/type/boolean_model"
require_relative "finch-api/type/enum"
require_relative "finch-api/type/union"
require_relative "finch-api/type/array_of"
require_relative "finch-api/type/hash_of"
require_relative "finch-api/type/base_model"
require_relative "finch-api/type/base_page"
require_relative "finch-api/type/request_parameters"
require_relative "finch-api/type"
require_relative "finch-api/request_options"
require_relative "finch-api/errors"
require_relative "finch-api/base_client"
require_relative "finch-api/pooled_net_requester"
require_relative "finch-api/transport/base_client"
require_relative "finch-api/transport/pooled_net_requester"
require_relative "finch-api/client"
require_relative "finch-api/individuals_page"
require_relative "finch-api/page"
Expand Down
Loading
Loading