Skip to content

Commit 4602bcb

Browse files
authored
Merge pull request #120 from maxmind/greg/eng-3321
Release 1.4.0
2 parents 5044121 + f55f7d7 commit 4602bcb

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 1.4.0
3+
## 1.4.0 (2025-11-20)
44

55
* Ruby 3.2+ is now required. If you're using Ruby 3.0 or 3.1, please use
66
version 1.3.0 of this gem.

dev-bin/release.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
set -eu -o pipefail
44

5+
# Check that we're not on the main branch
6+
current_branch=$(git branch --show-current)
7+
if [ "$current_branch" = "main" ]; then
8+
echo "Error: Releases should not be done directly on the main branch."
9+
echo "Please create a release branch and run this script from there."
10+
exit 1
11+
fi
12+
513
changelog=$(cat CHANGELOG.md)
614

715
regex='

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.3.0'
6+
VERSION = '1.4.0'
77
end
88
end

maxmind-geoip2.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
2828

2929
s.add_dependency 'connection_pool', ['~> 2.2']
3030
s.add_dependency 'http', '>= 4.3', '< 6.0'
31-
s.add_dependency 'maxmind-db', ['~> 1.2']
31+
s.add_dependency 'maxmind-db', ['~> 1.4']
3232

3333
s.add_development_dependency 'minitest'
3434
s.add_development_dependency 'rake'

0 commit comments

Comments
 (0)