Skip to content

Commit

Permalink
chore: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
loqimean committed Jul 22, 2023
1 parent bfd72ab commit 8438d80
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

### Changed

- **Breaking Change**: Updated method signatures in the gem to use keyword arguments instead of named arguments.
### Breaking Change
Updated method signatures in the gem to use keyword arguments instead of named arguments.

- Specifically, `MonopayRuby::Invoices::SimpleInvoice::new` method was affected by this change.
- Previously, the method was called like `new("redirect/url", "webhook/url")`. Now, it should be called like `new(redirect_url: "redirect/url", webhook_url: "webhook/url")`.
- Note: This is a breaking change and will require updating your code if you are updating to this version of the gem from an earlier version.
###### Specifically
`MonopayRuby::Invoices::SimpleInvoice::new` method was affected by this change.
###### Previously
the method was called like `new("redirect/url", "webhook/url")`. Now, it should be called like `new(redirect_url: "redirect/url", webhook_url: "webhook/url")`.
#### Note
This is a breaking change and will require updating your code if you are updating to this version of the gem from an earlier version.

## [0.1.1] - 2023-06-19

Expand Down

0 comments on commit 8438d80

Please sign in to comment.