diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0b7b466..bcdc732 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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. @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9561c7c..0220e63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 46c6dc5..6107949 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/maxmind-db.gemspec b/maxmind-db.gemspec index 9d8dda3..1d656d8 100644 --- a/maxmind-db.gemspec +++ b/maxmind-db.gemspec @@ -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 = 'support@maxmind.com'