Skip to content

Commit 6c19d12

Browse files
authored
Ruby: update changelog (#182)
Prepares the Ruby gem for a new patch release.
1 parent ca9c1e0 commit 6c19d12

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
with:
2727
ruby-version: ${{ matrix.ruby-version }}
2828
- name: Build and install gem
29-
run: gem build truelayer-signing.gemspec && gem install ./truelayer-signing-0.1.0.gem
29+
run: gem build truelayer-signing.gemspec && gem install ./truelayer-signing-0.1.1.gem
3030
- name: Run tests
3131
run: rake test

ruby/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- ...
1111

12+
## [0.1.1] – 2023-05-17
13+
14+
- Fix webhook server example
15+
1216
## [0.1.0] – 2023-01-09
1317

1418
- Add `TrueLayerSigning.sign_with_pem` and `TrueLayerSigning.verify_with_pem(pem)`.

ruby/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# truelayer-signing
22

3+
![GitHub Workflow Status (with branch)](https://img.shields.io/github/actions/workflow/status/TrueLayer/truelayer-signing/ruby.yml?branch=main)
4+
![Gem](https://img.shields.io/gem/v/truelayer-signing)
5+
![Gem](https://img.shields.io/gem/dt/truelayer-signing)
6+
37
Ruby gem to produce and verify TrueLayer API requests signatures.
48

59
## Installation

ruby/truelayer-signing.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ $LOAD_PATH.unshift(::File.join(::File.dirname(__FILE__), "lib"))
22

33
Gem::Specification.new do |s|
44
s.name = "truelayer-signing"
5-
s.version = "0.1.0"
5+
s.version = "0.1.1"
66
s.summary = "Ruby gem to produce and verify TrueLayer API requests signatures"
77
s.description = "TrueLayer provides instant access to open banking to " \
88
"easily integrate next-generation payments and financial data into any app." \
99
"This helps easily sign TrueLayer API requests using a JSON web signature."
1010
s.author = "Kevin Plattret"
1111
s.email = "[email protected]"
12-
s.homepage = "https://github.com/truelayer/truelayer-signing/ruby"
12+
s.homepage = "https://github.com/TrueLayer/truelayer-signing/tree/main/ruby"
1313
s.licenses = ["Apache-2.0", "MIT"]
1414

1515
s.metadata = {
16-
"bug_tracker_uri" => "https://github.com/truelayer/truelayer-signing/issues",
17-
"changelog_uri" => "https://github.com/truelayer/truelayer-signing/tree/ruby/CHANGELOG.md",
16+
"bug_tracker_uri" => "https://github.com/TrueLayer/truelayer-signing/issues",
17+
"changelog_uri" => "https://github.com/TrueLayer/truelayer-signing/blob/main/ruby/CHANGELOG.md",
1818
}
1919

2020
s.files = Dir["./**/*"]

0 commit comments

Comments
 (0)