Skip to content

Commit

Permalink
Bump to version 1.47.0 [ci skip]
Browse files Browse the repository at this point in the history
* Bug fix: normalize.css Sass import is concatenated with other styles now
* Bug fix: the suspenders gem itself is not needed in production
* Bug fix: bundle install after adding a gem
* Breaking: remove Refills
* Breaking: rename suspenders:enforce_ssl to suspenders:production:force_tls
* Upgrade: update to Ruby 2.5.1
* Upgrade: update to Rails 5.2.0
* New generator: production email
* New generator: production timeouts
  • Loading branch information
mike-burns committed May 25, 2018
1 parent 6569d1c commit bb2c57c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
14 changes: 11 additions & 3 deletions NEWS.md
@@ -1,6 +1,14 @@
* Upgrade: Update to Ruby 2.5.1
* Upgrade: Update to Rails 5.1.6

1.47.0 (May 25, 2018)

* Bug fix: normalize.css Sass import is concatenated with other styles now
* Bug fix: the suspenders gem itself is not needed in production
* Bug fix: bundle install after adding a gem
* Breaking: remove Refills
* Breaking: rename suspenders:enforce_ssl to suspenders:production:force_tls
* Upgrade: update to Ruby 2.5.1
* Upgrade: update to Rails 5.2.0
* New generator: production email
* New generator: production timeouts

1.46.0 (January 26, 2018)

Expand Down
13 changes: 6 additions & 7 deletions RELEASING.md
@@ -1,19 +1,18 @@
# Releasing

1. Update `lib/suspenders/version.rb` file accordingly.
2. Update `NEWS.md` to reflect the changes since last release.
1. Update `NEWS.md` to reflect the changes since last release.
2. Update `lib/suspenders/version.rb` file accordingly.
3. Commit changes. There shouldn't be code changes, and thus CI doesn't need to
run, you can then add `[ci skip]` to the commit message.
run; you can add `[ci skip]` to the commit message.
4. Tag the release: `git tag vVERSION -a -s`. The tag message should contain the
appropriate `NEWS.md` subsection.
5. Push changes: `git push --tags`
6. Build and publish to rubygems:
```bash
```sh
gem build suspenders.gemspec
gem push suspenders-*.gem
```

7. Add a new GitHub release:
https://github.com/thoughtbot/suspenders/releases/new?tag=vVERSION
8. Announce the new release, making sure to say "thank you" to the contributors
who helped shape this version!
8. Announce the new release, making sure to thank the contributors who helped
shape this version!
2 changes: 1 addition & 1 deletion lib/suspenders/version.rb
Expand Up @@ -4,5 +4,5 @@ module Suspenders
read("#{File.dirname(__FILE__)}/../../.ruby-version").
strip.
freeze
VERSION = "1.46.0".freeze
VERSION = "1.47.0".freeze
end

0 comments on commit bb2c57c

Please sign in to comment.