Skip to content

Commit 386cc74

Browse files
committed
Preparing v4.3.0
1 parent d8804bd commit 386cc74

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@
1212

1313
* Your contribution here!
1414

15+
## [4.3.0][] (2019-03-08)
16+
17+
### New features
18+
19+
* [#503] Support Rails 6.0.0.
20+
* Small documentation changes.
21+
1522
## [4.2.0][] (2019-03-08)
1623

1724
### New features

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Some other nice things that `bootstrap_form` does for you are:
4040
Add it to your Gemfile:
4141

4242
```ruby
43-
gem "bootstrap_form"
43+
gem "bootstrap_form", "~> 4.0"
4444
```
4545

4646
Then:

RELEASING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ Follow these steps to release a new version of bootstrap_form to rubygems.org.
66

77
* You must have commit rights to the bootstrap_form repository.
88
* You must have push rights for the bootstrap_form gem on rubygems.org.
9-
* You must be using Ruby >= 2.2.
9+
* You must be using Ruby >= 2.4.
1010
* Your GitHub credentials must be available to Chandler via `~/.netrc` or an environment variable, [as explained here](https://github.com/mattbrictson/chandler#2-configure-credentials).
1111

1212
## How to release
1313

1414
1. Run `bundle install` to make sure that you have all the gems necessary for testing and releasing.
15-
2. **Ensure the tests are passing by running `bundle exec rake`.**
15+
2. **Ensure the tests are passing by running `bundle exec rake`.**
1616
3. Determine which would be the correct next version number according to [semver](http://semver.org/).
1717
4. Update the version in `./lib/bootstrap_form/version.rb`.
1818
5. Update the `CHANGELOG.md` (for an illustration of these steps, refer to the [4.0.0.alpha1 commit](https://github.com/bootstrap-ruby/bootstrap_form/commit/8aac3667931a16537ab68038ec4cebce186bd596#diff-4ac32a78649ca5bdd8e0ba38b7006a1e) as an example):

lib/bootstrap_form/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module BootstrapForm
2-
VERSION = "4.2.0".freeze
2+
VERSION = "4.3.0".freeze
33
end

0 commit comments

Comments
 (0)