Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
submodules: true
persist-credentials: false

# zizmor complains that 'v1' is a ref that can be provided by both the branch and tag namespaces.
Expand All @@ -29,6 +30,8 @@ jobs:
with:
ruby-version: ruby

- run: bundle install

# zizmor complains that 'v1' is a ref that can be provided by both the branch and tag namespaces.
# specify that we want the v1 branch.
- uses: rubygems/release-gem@refs/heads/v1
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog

## 1.3.0
## 1.3.2 (2025-04-03)

* Re-release to fix a release script problem. There are no code changes.

## 1.3.1 (2025-04-03)

* Re-release to fix a release script problem. There are no code changes.

## 1.3.0 (2025-04-03)

* Ruby 3.0+ is now required. If you're using Ruby 2.5, 2.6, or 2.7, please
use version 1.2.0 of this gem.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ This library uses [Semantic Versioning](https://semver.org/).

## Copyright and License

This software is Copyright (c) 2018 - 2024 by MaxMind, Inc.
This software is Copyright (c) 2018 - 2025 by MaxMind, Inc.

This is free software, licensed under the [Apache License, Version
2.0](LICENSE-APACHE) or the [MIT License](LICENSE-MIT), at your option.
2 changes: 1 addition & 1 deletion maxmind-db.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.files = Dir['**/*'].difference(Dir['.github/**/*', 'dev-bin/**/*'])
s.name = 'maxmind-db'
s.summary = 'A gem for reading MaxMind DB files.'
s.version = '1.2.0'
s.version = '1.3.2'

s.description = 'A gem for reading MaxMind DB files. MaxMind DB is a binary file format that stores data indexed by IP address subnets (IPv4 or IPv6).'
s.email = '[email protected]'
Expand Down