diff --git a/Gemfile.lock b/Gemfile.lock index 81d31eaf..697fd512 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - suspenders (3.0.0) + suspenders (20240516.0) rails (~> 7.0) GEM diff --git a/NEWS.md b/NEWS.md index 01c4732e..fac29df6 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,6 @@ -Unreleased +20240516.0 (May, 16, 2024) + +"Tailored" release * Remove `suspenders` system executable and introduce [application template][] * Introduce `suspenders:accessibility` generator diff --git a/README.md b/README.md index e31b533d..46515c39 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,6 @@ [![CI](https://github.com/thoughtbot/suspenders/actions/workflows/main.yml/badge.svg)](https://github.com/thoughtbot/suspenders/actions/workflows/main.yml) -> [!NOTE] -> You are viewing the latest build of Suspenders, but not the latest release. - Suspenders is a [Rails Engine][] containing generators for configuring Rails applications with these [features][]. @@ -68,7 +65,7 @@ Suspenders can be used on an existing Rails application by adding it to the ```ruby group :development, :test do - gem "suspenders", github: "thoughtbot/suspenders" + gem "suspenders" end ``` diff --git a/lib/suspenders/version.rb b/lib/suspenders/version.rb index 8f4f377d..00621e55 100644 --- a/lib/suspenders/version.rb +++ b/lib/suspenders/version.rb @@ -1,5 +1,5 @@ module Suspenders - VERSION = "3.0.0".freeze + VERSION = "20240516.0".freeze RAILS_VERSION = "~> 7.0".freeze MINIMUM_RUBY_VERSION = ">= 3.1".freeze MINIMUM_NODE_VERSION = "20.0.0".freeze