From 6c2306085a98d7d316dfee4e10b6504d5dec522e Mon Sep 17 00:00:00 2001 From: Chris Salzberg Date: Sat, 30 Nov 2024 10:43:59 +0900 Subject: [PATCH] Release 1.3.0 --- CHANGELOG.md | 8 +++++++- lib/mobility/version.rb | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aacc607c..c28d1820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,17 @@ ## 1.3 -### (unreleased) +### 1.3.0 - Only support ActiveRecord >= 7.0 - Allow `I18n.available_locales` to contain Strings ([#612](https://github.com/shioyama/mobility/pull/612)) +- Update CI config, add support for Rails 8 + ([#653](https://github.com/shioyama/mobility/pull/653)), thanks + [d-rodriguez](https://github.com/n-rodriguez)! +- Fix broken count statements in Active Record 8.0 + ([#655](https://github.com/shioyama/mobility/pull/655)), thanks + [jukra](https://github.com/jukra)! ### 1.3.0.rc3 diff --git a/lib/mobility/version.rb b/lib/mobility/version.rb index d4a83be5..b3275122 100644 --- a/lib/mobility/version.rb +++ b/lib/mobility/version.rb @@ -9,7 +9,7 @@ module VERSION MAJOR = 1 MINOR = 3 TINY = 0 - PRE = "rc3" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end