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

Commit 8a462bf

Browse files
author
Tim Rogers
authored
Merge pull request #28 from duffelhq/v0.2.0-release
v0.2.0
2 parents d010e49 + 188e812 commit 8a462bf

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [0.2.0] - 2022-01-11
2+
3+
- Add `WebhookEvent.genuine?` for checking whether a webhook event was genuinely sent by Duffel
4+
- Add support for `faraday` `v2.x`
5+
- Add YARD in-code documentation, [published to RubyDoc.info](https://rubydoc.info/github/duffelhq/duffel-api-ruby/main)
6+
17
## [0.1.0] - 2021-12-31
28

39
- Initial release

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.1.0"
23+
gem "duffel_api", "~> 0.2.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.1.0"
4+
VERSION = "0.2.0"
55
end

0 commit comments

Comments
 (0)