From 965640b640e8763330b47676ebcbc04064f4b3db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl-Ian?= Date: Thu, 23 Oct 2025 11:35:12 +0200 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86877a4..e4b38f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## Version 1.1.0 (2025-10-23) + ### Changed +* Configure Dependabot to automatically update Github Actions (#19) +* Drop support for Rails 7.1, Ruby 2.7 and Ruby 3.0 (#18) +* Add Rails 8.1 to the test matrix (#17) * Drop support for Rails 7.0 (#16) * Add Ruby 3.4 to the test matrix (#15) * Add Rails 8.0 to the test matrix (#14) From 124406d67bca35ea0828ea84f8091f704c5199c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl-Ian?= Date: Thu, 23 Oct 2025 11:35:38 +0200 Subject: [PATCH 2/2] Bump version --- Gemfile.lock | 4 ++-- lib/postcode_validator/version.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 934d408..009592b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - postcode_validator (1.0.2) + postcode_validator (1.1.0) twitter_cldr (> 4.4.0) GEM @@ -133,7 +133,7 @@ CHECKSUMS minitest (5.26.0) sha256=f5817ad09f863a4f7eac917707c1ca5c09cdc4a35e17d91171760178324d2c30 parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130 parser (3.3.9.0) sha256=94d6929354b1a6e3e1f89d79d4d302cc8f5aa814431a6c9c7e0623335d7687f2 - postcode_validator (1.0.2) + postcode_validator (1.1.0) prism (1.6.0) sha256=bfc0281a81718c4872346bc858dc84abd3a60cae78336c65ad35c8fbff641c6b racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a diff --git a/lib/postcode_validator/version.rb b/lib/postcode_validator/version.rb index 6200a06..679885e 100644 --- a/lib/postcode_validator/version.rb +++ b/lib/postcode_validator/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class PostcodeValidator - VERSION = '1.0.2' + VERSION = '1.1.0' end