Skip to content

Commit c98b901

Browse files
Merge pull request #589 from OneBusAway/release-please--branches--main--changes--next
release: 1.2.3
2 parents 4695dfe + 1b76852 commit c98b901

File tree

7 files changed

+14
-4
lines changed

7 files changed

+14
-4
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.2.2"
2+
".": "1.2.3"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.2.3 (2025-11-21)
4+
5+
Full Changelog: [v1.2.2...v1.2.3](https://github.com/OneBusAway/ruby-sdk/compare/v1.2.2...v1.2.3)
6+
7+
### Chores
8+
9+
* explicitly require "base64" gem ([9a4b451](https://github.com/OneBusAway/ruby-sdk/commit/9a4b4511aeba5c3b272b4d2f70154c87583c3a5e))
10+
311
## 1.2.2 (2025-11-05)
412

513
Full Changelog: [v1.2.1...v1.2.2](https://github.com/OneBusAway/ruby-sdk/compare/v1.2.1...v1.2.2)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
onebusaway-sdk (1.2.2)
14+
onebusaway-sdk (1.2.3)
1515
connection_pool
1616

1717
GEM

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
1717
<!-- x-release-please-start-version -->
1818

1919
```ruby
20-
gem "onebusaway-sdk", "~> 1.2.2"
20+
gem "onebusaway-sdk", "~> 1.2.3"
2121
```
2222

2323
<!-- x-release-please-end -->

lib/onebusaway_sdk.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Standard libraries.
44
# rubocop:disable Lint/RedundantRequireStatement
55
require "English"
6+
require "base64"
67
require "cgi"
78
require "date"
89
require "erb"

lib/onebusaway_sdk/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 OnebusawaySDK
4-
VERSION = "1.2.2"
4+
VERSION = "1.2.3"
55
end

manifest.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
dependencies:
22
- English
3+
- base64
34
- cgi
45
- date
56
- erb

0 commit comments

Comments
 (0)