File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 2323 ruby-version : 3.4
2424
2525 - run : bundle install
26+ env :
27+ BUNDLE_FROZEN : true
2628 - run : bundle exec rake -t rubocop
Original file line number Diff line number Diff line change 3838 ruby-version : ${{ matrix.version }}
3939
4040 - run : bundle install
41+ env :
42+ BUNDLE_FROZEN : true
4143 - run : bundle exec rake -t test
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11PATH
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 )
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
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 )
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 )
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
Original file line number Diff line number Diff 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
365365This is free software, licensed under the [ Apache License, Version
3663662.0] ( LICENSE-APACHE ) or the [ MIT License] ( LICENSE-MIT ) , at your option.
Original file line number Diff line number Diff line change 3232
3333check_command perl
3434check_command rake
35+ check_command bundle
3536
3637# Check that we're not on the main branch
3738current_branch=$( git branch --show-current)
8485
8586perl -pi -e " s/(?<=VERSION = \').+?(?=\')/$version /g" lib/maxmind/geoip2/version.rb
8687
88+ # Update version in Gemfile.lock.
89+ bundle install
90+
8791echo $" Test results:"
8892
8993rake
Original file line number Diff line number Diff line change 33module MaxMind
44 module GeoIP2
55 # The Gem version.
6- VERSION = '1.4.0 '
6+ VERSION = '1.5.1 '
77 end
88end
You can’t perform that action at this time.
0 commit comments