From aa923813e4ea48dc9f4eb2c748875580ae4c5012 Mon Sep 17 00:00:00 2001 From: Nick Charlton Date: Wed, 24 Jan 2024 14:56:23 +0000 Subject: [PATCH] Release v0.20.1 --- CHANGELOG.md | 10 ++++++++++ Gemfile.lock | 2 +- lib/administrate/version.rb | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a8854d2d4..8a7ad227f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,16 @@ ## Changes +### 0.20.1 (January 24, 2024) + +In `0.20.0`, we introduced a regression which potentially meant you might +get a `NameError` because of a missing import on `Administrate::VERSION`, +this fixes that and two other minor issues as well. + +* [BUGFIX] [#2494] Fix build-changelog with no template changes +* [BUGFIX] [#2491] Fix missing `Administrate::VERSION` reference +* [DOC] [#2489] Fix path in documentation + ### 0.20.0 (January 17, 2024) This is our final release before v1.0.0, which will bring with it a big diff --git a/Gemfile.lock b/Gemfile.lock index 8ed40fbdab..2e8760a7c4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - administrate (0.20.0) + administrate (0.20.1) actionpack (>= 6.0, < 8.0) actionview (>= 6.0, < 8.0) activerecord (>= 6.0, < 8.0) diff --git a/lib/administrate/version.rb b/lib/administrate/version.rb index 9f091ca53a..d100352758 100644 --- a/lib/administrate/version.rb +++ b/lib/administrate/version.rb @@ -1,3 +1,3 @@ module Administrate - VERSION = "0.20.0".freeze + VERSION = "0.20.1".freeze end