Skip to content

Commit 464053e

Browse files
committed
prepare 3.2.0 release
1 parent 8b0120a commit 464053e

File tree

6 files changed

+27
-14
lines changed

6 files changed

+27
-14
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ubuntu-latest]
1515
# https://www.ruby-lang.org/en/downloads/branches/
16-
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"]
16+
ruby: ["3.0", "3.1", "3.2", "3.3"]
1717
runs-on: ${{ matrix.os }}
1818
steps:
1919
- uses: actions/checkout@v4

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ require:
22
- rubocop-rake
33
- rubocop-rspec
44
AllCops:
5-
TargetRubyVersion: 2.7
5+
TargetRubyVersion: 3.0
66
NewCops: disable
77
Metrics/BlockLength:
88
Max: 100

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
3.2.0 - Mon Jun 10 2024
2+
===============================================================
3+
- Ruby 2.x no longer supported
4+
- various Ruby gem updates
5+
16
3.1.2 - Mon Jun 10 2024
27
===============================================================
38
- last release supporting Ruby 2.x

Gemfile.lock

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ GEM
1616
diff-lcs (1.5.1)
1717
hashdiff (1.1.0)
1818
json (2.7.2)
19-
parallel (1.24.0)
19+
language_server-protocol (3.17.0.3)
20+
parallel (1.25.1)
2021
parser (3.3.2.0)
2122
ast (~> 2.4.1)
2223
racc
@@ -40,29 +41,36 @@ GEM
4041
diff-lcs (>= 1.2.0, < 2.0)
4142
rspec-support (~> 3.13.0)
4243
rspec-support (3.13.1)
43-
rubocop (1.50.2)
44+
rubocop (1.64.1)
4445
json (~> 2.3)
46+
language_server-protocol (>= 3.17.0)
4547
parallel (~> 1.10)
46-
parser (>= 3.2.0.0)
48+
parser (>= 3.3.0.2)
4749
rainbow (>= 2.2.2, < 4.0)
4850
regexp_parser (>= 1.8, < 3.0)
4951
rexml (>= 3.2.5, < 4.0)
50-
rubocop-ast (>= 1.28.0, < 2.0)
52+
rubocop-ast (>= 1.31.1, < 2.0)
5153
ruby-progressbar (~> 1.7)
5254
unicode-display_width (>= 2.4.0, < 3.0)
53-
rubocop-ast (1.30.0)
54-
parser (>= 3.2.1.0)
55-
rubocop-capybara (2.18.0)
55+
rubocop-ast (1.31.3)
56+
parser (>= 3.3.1.0)
57+
rubocop-capybara (2.21.0)
58+
rubocop (~> 1.41)
59+
rubocop-factory_bot (2.26.0)
5660
rubocop (~> 1.41)
5761
rubocop-rake (0.6.0)
5862
rubocop (~> 1.0)
59-
rubocop-rspec (2.20.0)
60-
rubocop (~> 1.33)
63+
rubocop-rspec (2.31.0)
64+
rubocop (~> 1.40)
6165
rubocop-capybara (~> 2.17)
66+
rubocop-factory_bot (~> 2.22)
67+
rubocop-rspec_rails (~> 2.28)
68+
rubocop-rspec_rails (2.29.0)
69+
rubocop (~> 1.40)
6270
ruby-progressbar (1.13.0)
6371
strscan (3.1.0)
6472
unicode-display_width (2.5.0)
65-
vcr (6.1.0)
73+
vcr (6.2.0)
6674
webmock (3.23.1)
6775
addressable (>= 2.8.0)
6876
crack (>= 0.3.2)

lib/opencage/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module OpenCage
2-
VERSION = '3.1.2'.freeze
2+
VERSION = '3.2.0'.freeze
33
end

opencage-geocoder.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require 'opencage/version'
55
Gem::Specification.new do |s|
66
s.name = 'opencage-geocoder'
77
s.version = OpenCage::VERSION
8-
s.required_ruby_version = '>= 2.7'
8+
s.required_ruby_version = '>= 3.0'
99
s.licenses = ['MIT']
1010
s.summary = 'A client for the OpenCage geocoder API'
1111
s.description = 'A client for the OpenCage geocoding API - https://opencagedata.com/'

0 commit comments

Comments
 (0)