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

Commit c59510b

Browse files
author
Tim Rogers
authored
Merge pull request #40 from duffelhq/v0.3.0
v0.3.0
2 parents 526761b + 1225213 commit c59510b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [0.3.0] - 2022-02-15
2+
3+
- Automatically retry rate-limited requests (thanks to @ferrisoxide for the contribution!)
4+
- Paginate through records with `#all` 200 records at a time by default, rather than 50 records at a time
5+
16
## [0.2.0] - 2022-01-11
27

38
- Add `WebhookEvent.genuine?` for checking whether a webhook event was genuinely sent by Duffel

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A Ruby client library for the [Duffel API](https://duffel.com/docs/api).
2020
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`:
2121

2222
```ruby
23-
gem "duffel_api", "~> 0.2.0"
23+
gem "duffel_api", "~> 0.3.0"
2424
```
2525

2626
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`.

lib/duffel_api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module DuffelAPI
4-
VERSION = "0.2.0"
4+
VERSION = "0.3.0"
55
end

0 commit comments

Comments
 (0)