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.6.0"
".": "1.7.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: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-930514b98f2a5e85e56fe454b7a1f2e16e1f0a4a4e2804b31acc3da98526f2ed.yml
openapi_spec_hash: 8e35630e1ad9cfb1ac15ad87701f806f
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-86936f20d6eab34ef44aed8b323cea5043d733402022fd34c7e24e2234875306.yml
openapi_spec_hash: cb262d222b0031cce34498409149e4ae
config_hash: 97774f946585cecb19181a1817870d0b
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.7.0 (2025-07-02)

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

### Features

* **api:** api update ([c7a416e](https://github.com/Increase/increase-ruby/commit/c7a416e30dc10a9245015f3e5da55142831d0112))

## 1.6.0 (2025-07-01)

Full Changelog: [v1.5.3...v1.6.0](https://github.com/Increase/increase-ruby/compare/v1.5.3...v1.6.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.6.0)
increase (1.7.0)
connection_pool

GEM
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.6.0"
gem "increase", "~> 1.7.0"
```

<!-- x-release-please-end -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ module Reason
# The customer's account has insufficient funds. This reason is only allowed for debits. The Nacha return code is R01.
INSUFFICIENT_FUNDS = :insufficient_funds

# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request. The Nacha return code is R06.
RETURNED_PER_ODFI_REQUEST = :returned_per_odfi_request

# The customer no longer authorizes this transaction. The Nacha return code is R07.
AUTHORIZATION_REVOKED_BY_CUSTOMER = :authorization_revoked_by_customer

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.6.0"
VERSION = "1.7.0"
end
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,6 @@ module Increase
Increase::InboundACHTransferTransferReturnParams::Reason::TaggedSymbol
)

# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request. The Nacha return code is R06.
RETURNED_PER_ODFI_REQUEST =
T.let(
:returned_per_odfi_request,
Increase::InboundACHTransferTransferReturnParams::Reason::TaggedSymbol
)

# The customer no longer authorizes this transaction. The Nacha return code is R07.
AUTHORIZATION_REVOKED_BY_CUSTOMER =
T.let(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ module Increase

type reason =
:insufficient_funds
| :returned_per_odfi_request
| :authorization_revoked_by_customer
| :payment_stopped
| :customer_advised_unauthorized_improper_ineligible_or_incomplete
Expand All @@ -40,9 +39,6 @@ module Increase
# The customer's account has insufficient funds. This reason is only allowed for debits. The Nacha return code is R01.
INSUFFICIENT_FUNDS: :insufficient_funds

# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request. The Nacha return code is R06.
RETURNED_PER_ODFI_REQUEST: :returned_per_odfi_request

# The customer no longer authorizes this transaction. The Nacha return code is R07.
AUTHORIZATION_REVOKED_BY_CUSTOMER: :authorization_revoked_by_customer

Expand Down