Skip to content

Commit 9418f2a

Browse files
authored
Merge pull request #141 from maxmind/wstorey/release
Release 1.5.0
2 parents c1e1acd + 516eb01 commit 9418f2a

8 files changed

Lines changed: 26 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
ruby-version: ruby
3232

3333
- run: bundle install
34+
env:
35+
BUNDLE_FROZEN: true
3436

3537
# zizmor complains that 'v1' is a ref that can be provided by both the branch and tag namespaces.
3638
# specify that we want the v1 branch.

.github/workflows/rubocop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ jobs:
2323
ruby-version: 3.4
2424

2525
- run: bundle install
26+
env:
27+
BUNDLE_FROZEN: true
2628
- run: bundle exec rake -t rubocop

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,6 @@ jobs:
3838
ruby-version: ${{ matrix.version }}
3939

4040
- run: bundle install
41+
env:
42+
BUNDLE_FROZEN: true
4143
- run: bundle exec rake -t test

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
# Changelog
22

3-
## 1.5.0
3+
## 1.5.1 (2026-01-19)
4+
5+
* Re-release with a fix to the release process. This includes a bump of the
6+
gem's version in `Gemfile.lock`.
7+
8+
## 1.5.0 (2026-01-19)
49

510
* Unnecessary files were removed from the published .gem. Pull request by
611
Orien Madgwick. GitHub #131.
12+
* Updated `connection_pool` dependency to allow version 3+. Reported by
13+
Igor Kasyanchuk. GitHub #140.
714

815
## 1.4.0 (2025-11-20)
916

Gemfile.lock

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
maxmind-geoip2 (1.4.0)
4+
maxmind-geoip2 (1.5.1)
55
connection_pool (>= 2.2, < 4.0)
66
http (>= 4.3, < 6.0)
77
maxmind-db (~> 1.4)
@@ -13,6 +13,7 @@ GEM
1313
public_suffix (>= 2.0.2, < 8.0)
1414
ast (2.4.3)
1515
bigdecimal (3.3.1)
16+
bigdecimal (3.3.1-java)
1617
connection_pool (3.0.2)
1718
crack (1.0.1)
1819
bigdecimal
@@ -24,6 +25,7 @@ GEM
2425
ffi (1.17.2-arm-linux-gnu)
2526
ffi (1.17.2-arm-linux-musl)
2627
ffi (1.17.2-arm64-darwin)
28+
ffi (1.17.2-java)
2729
ffi (1.17.2-x86-linux-gnu)
2830
ffi (1.17.2-x86-linux-musl)
2931
ffi (1.17.2-x86_64-darwin)
@@ -42,6 +44,7 @@ GEM
4244
domain_name (~> 0.5)
4345
http-form_data (2.3.0)
4446
json (2.18.0)
47+
json (2.18.0-java)
4548
language_server-protocol (3.17.0.5)
4649
lint_roller (1.1.0)
4750
llhttp-ffi (0.5.1)
@@ -57,6 +60,7 @@ GEM
5760
prism (1.7.0)
5861
public_suffix (7.0.0)
5962
racc (1.8.1)
63+
racc (1.8.1-java)
6064
rainbow (3.1.1)
6165
rake (13.3.1)
6266
regexp_parser (2.11.3)
@@ -105,6 +109,7 @@ PLATFORMS
105109
arm-linux-gnu
106110
arm-linux-musl
107111
arm64-darwin
112+
java
108113
ruby
109114
x86-linux-gnu
110115
x86-linux-musl

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ This library uses [Semantic Versioning](https://semver.org/).
360360

361361
## Copyright and License
362362

363-
This software is Copyright (c) 2020-2025 by MaxMind, Inc.
363+
This software is Copyright (c) 2020-2026 by MaxMind, Inc.
364364

365365
This is free software, licensed under the [Apache License, Version
366366
2.0](LICENSE-APACHE) or the [MIT License](LICENSE-MIT), at your option.

dev-bin/release.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ fi
3232

3333
check_command perl
3434
check_command rake
35+
check_command bundle
3536

3637
# Check that we're not on the main branch
3738
current_branch=$(git branch --show-current)
@@ -84,6 +85,9 @@ fi
8485

8586
perl -pi -e "s/(?<=VERSION = \').+?(?=\')/$version/g" lib/maxmind/geoip2/version.rb
8687

88+
# Update version in Gemfile.lock.
89+
bundle install
90+
8791
echo $"Test results:"
8892

8993
rake

lib/maxmind/geoip2/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
module MaxMind
44
module GeoIP2
55
# The Gem version.
6-
VERSION = '1.4.0'
6+
VERSION = '1.5.1'
77
end
88
end

0 commit comments

Comments
 (0)