Skip to content

Commit

Permalink
prepare 3.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmail committed Jun 10, 2024
1 parent 8b0120a commit 464053e
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
os: [ubuntu-latest]
# https://www.ruby-lang.org/en/downloads/branches/
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"]
ruby: ["3.0", "3.1", "3.2", "3.3"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require:
- rubocop-rake
- rubocop-rspec
AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
NewCops: disable
Metrics/BlockLength:
Max: 100
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
3.2.0 - Mon Jun 10 2024
===============================================================
- Ruby 2.x no longer supported
- various Ruby gem updates

3.1.2 - Mon Jun 10 2024
===============================================================
- last release supporting Ruby 2.x
Expand Down
28 changes: 18 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ GEM
diff-lcs (1.5.1)
hashdiff (1.1.0)
json (2.7.2)
parallel (1.24.0)
language_server-protocol (3.17.0.3)
parallel (1.25.1)
parser (3.3.2.0)
ast (~> 2.4.1)
racc
Expand All @@ -40,29 +41,36 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
rubocop (1.50.2)
rubocop (1.64.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.0.0)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.0, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-capybara (2.18.0)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-capybara (2.21.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.26.0)
rubocop (~> 1.41)
rubocop-rake (0.6.0)
rubocop (~> 1.0)
rubocop-rspec (2.20.0)
rubocop (~> 1.33)
rubocop-rspec (2.31.0)
rubocop (~> 1.40)
rubocop-capybara (~> 2.17)
rubocop-factory_bot (~> 2.22)
rubocop-rspec_rails (~> 2.28)
rubocop-rspec_rails (2.29.0)
rubocop (~> 1.40)
ruby-progressbar (1.13.0)
strscan (3.1.0)
unicode-display_width (2.5.0)
vcr (6.1.0)
vcr (6.2.0)
webmock (3.23.1)
addressable (>= 2.8.0)
crack (>= 0.3.2)
Expand Down
2 changes: 1 addition & 1 deletion lib/opencage/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module OpenCage
VERSION = '3.1.2'.freeze
VERSION = '3.2.0'.freeze
end
2 changes: 1 addition & 1 deletion opencage-geocoder.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require 'opencage/version'
Gem::Specification.new do |s|
s.name = 'opencage-geocoder'
s.version = OpenCage::VERSION
s.required_ruby_version = '>= 2.7'
s.required_ruby_version = '>= 3.0'
s.licenses = ['MIT']
s.summary = 'A client for the OpenCage geocoder API'
s.description = 'A client for the OpenCage geocoding API - https://opencagedata.com/'
Expand Down

0 comments on commit 464053e

Please sign in to comment.