Skip to content

Commit bb2c57c

Browse files
committed
Bump to version 1.47.0 [ci skip]
* 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 parent 6569d1c commit bb2c57c

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

NEWS.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1-
* Upgrade: Update to Ruby 2.5.1
2-
* Upgrade: Update to Rails 5.1.6
3-
1+
1.47.0 (May 25, 2018)
2+
3+
* Bug fix: normalize.css Sass import is concatenated with other styles now
4+
* Bug fix: the suspenders gem itself is not needed in production
5+
* Bug fix: bundle install after adding a gem
6+
* Breaking: remove Refills
7+
* Breaking: rename suspenders:enforce_ssl to suspenders:production:force_tls
8+
* Upgrade: update to Ruby 2.5.1
9+
* Upgrade: update to Rails 5.2.0
10+
* New generator: production email
11+
* New generator: production timeouts
412

513
1.46.0 (January 26, 2018)
614

RELEASING.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
# Releasing
22

3-
1. Update `lib/suspenders/version.rb` file accordingly.
4-
2. Update `NEWS.md` to reflect the changes since last release.
3+
1. Update `NEWS.md` to reflect the changes since last release.
4+
2. Update `lib/suspenders/version.rb` file accordingly.
55
3. Commit changes. There shouldn't be code changes, and thus CI doesn't need to
6-
run, you can then add `[ci skip]` to the commit message.
6+
run; you can add `[ci skip]` to the commit message.
77
4. Tag the release: `git tag vVERSION -a -s`. The tag message should contain the
88
appropriate `NEWS.md` subsection.
99
5. Push changes: `git push --tags`
1010
6. Build and publish to rubygems:
11-
```bash
11+
```sh
1212
gem build suspenders.gemspec
1313
gem push suspenders-*.gem
1414
```
15-
1615
7. Add a new GitHub release:
1716
https://github.com/thoughtbot/suspenders/releases/new?tag=vVERSION
18-
8. Announce the new release, making sure to say "thank you" to the contributors
19-
who helped shape this version!
17+
8. Announce the new release, making sure to thank the contributors who helped
18+
shape this version!

lib/suspenders/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ module Suspenders
44
read("#{File.dirname(__FILE__)}/../../.ruby-version").
55
strip.
66
freeze
7-
VERSION = "1.46.0".freeze
7+
VERSION = "1.47.0".freeze
88
end

0 commit comments

Comments
 (0)