Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for "Tailored" release #1206

Merged
merged 1 commit into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
suspenders (3.0.0)
suspenders (20240516.0)
rails (~> 7.0)

GEM
Expand Down
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Unreleased
20240516.0 (May, 16, 2024)

"Tailored" release

* Remove `suspenders` system executable and introduce [application template][]
* Introduce `suspenders:accessibility` generator
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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][].

Expand Down Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion lib/suspenders/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Suspenders
VERSION = "3.0.0".freeze
VERSION = "20240516.0".freeze
stevepolitodesign marked this conversation as resolved.
Show resolved Hide resolved
RAILS_VERSION = "~> 7.0".freeze
MINIMUM_RUBY_VERSION = ">= 3.1".freeze
MINIMUM_NODE_VERSION = "20.0.0".freeze
Expand Down