Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #40 from duffelhq/v0.3.0
Browse files Browse the repository at this point in the history
v0.3.0
  • Loading branch information
Tim Rogers authored Feb 15, 2022
2 parents 526761b + 1225213 commit c59510b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [0.3.0] - 2022-02-15

- Automatically retry rate-limited requests (thanks to @ferrisoxide for the contribution!)
- Paginate through records with `#all` 200 records at a time by default, rather than 50 records at a time

## [0.2.0] - 2022-01-11

- Add `WebhookEvent.genuine?` for checking whether a webhook event was genuinely sent by Duffel
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A Ruby client library for the [Duffel API](https://duffel.com/docs/api).
In most cases, you'll want to add `duffel_api` to your project as a dependency by listing it in your `Gemfile`, and then running `bundle`:

```ruby
gem "duffel_api", "~> 0.2.0"
gem "duffel_api", "~> 0.3.0"
```

You can install `duffel_api` outside of the context of a project by running `gem install duffel_api` - for example if you want to play with the client library in `irb`.
Expand Down
2 changes: 1 addition & 1 deletion lib/duffel_api/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module DuffelAPI
VERSION = "0.2.0"
VERSION = "0.3.0"
end

0 comments on commit c59510b

Please sign in to comment.