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 @@
{
".": "1.251.0"
".": "1.252.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 236
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-842d7a1e6cff968c70110dc90a9e51da05e2f781e902d6f5ca71940e4b9688e1.yml
openapi_spec_hash: c3aabecf5bb2135391d6b8faef4ac1b3
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2d7155feee87cb1c64ae2b6f31d769c46725b615f1622558f998f2a637cfb57c.yml
openapi_spec_hash: c3117360164f38ece4a984800813813c
config_hash: 25d7d7aa4882db6189b4b53e8e249e80
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.252.0 (2026-03-12)

Full Changelog: [v1.251.0...v1.252.0](https://github.com/Increase/increase-ruby/compare/v1.251.0...v1.252.0)

### Features

* **api:** api update ([83c1f81](https://github.com/Increase/increase-ruby/commit/83c1f81ff2f60859e9d9db3d3fd7924065bb4573))

## 1.251.0 (2026-03-12)

Full Changelog: [v1.250.0...v1.251.0](https://github.com/Increase/increase-ruby/compare/v1.250.0...v1.251.0)
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:
increase (1.251.0)
increase (1.252.0)
cgi
connection_pool
standardwebhooks
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "increase", "~> 1.251.0"
gem "increase", "~> 1.252.0"
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Increase
VERSION = "1.251.0"
VERSION = "1.252.0"
end
9 changes: 3 additions & 6 deletions test/increase/resources/beneficial_owners_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ def test_create_required_params
end

def test_retrieve
response =
@increase.beneficial_owners.retrieve("entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7")
response = @increase.beneficial_owners.retrieve("entity_beneficial_owner_vozma8szzu1sxezp5zq6")

assert_pattern do
response => Increase::EntityBeneficialOwner
Expand All @@ -57,8 +56,7 @@ def test_retrieve
end

def test_update
response =
@increase.beneficial_owners.update("entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7")
response = @increase.beneficial_owners.update("entity_beneficial_owner_vozma8szzu1sxezp5zq6")

assert_pattern do
response => Increase::EntityBeneficialOwner
Expand Down Expand Up @@ -107,8 +105,7 @@ def test_list_required_params
end

def test_archive
response =
@increase.beneficial_owners.archive("entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7")
response = @increase.beneficial_owners.archive("entity_beneficial_owner_vozma8szzu1sxezp5zq6")

assert_pattern do
response => Increase::EntityBeneficialOwner
Expand Down