Skip to content

Commit 4104f0e

Browse files
committed
Include keepachangelog_manager gem for CHANGELOG.md updating
1 parent 429fe9d commit 4104f0e

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
- `ArduinoInstallation::force_install` now optionally accepts a version string
1111
- `arduino_library_location.rb` script to print Arduino library location to stdout
1212
- `arduino_ci_remote.rb` now supports `--skip-unittests` and `--skip-compilation`. If you skip both, only the `autolocate!` of the Arduino binary will be performed.
13+
- `keepachangelog_manager` gem to begin streamlining the release process
1314

1415
### Changed
1516
- Unit tests and examples are now executed alphabetically by filename

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ See `SampleProjects/TestSomething/test/*.cpp` for the existing tests (run by rsp
3232
* Merge pull request with new features
3333
* `git stash save` (at least before the gem build step, but easiest here).
3434
* `git pull --rebase`
35+
* Update the sections of `CHANGELOG.md` by running `bundle exec keepachangelog_release.md --increment-patch`
3536
* Bump the version in lib/arduino_ci/version.rb and change it in README.md (since rubydoc.info doesn't always redirect to the latest version)
36-
* Update the sections of `CHANGELOG.md`
3737
* `git add README.md CHANGELOG.md lib/arduino_ci/version.rb`
3838
* `git commit -m "vVERSION bump"`
3939
* `git tag -a vVERSION -m "Released version VERSION"`

arduino_ci.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Gem::Specification.new do |spec|
2929
spec.add_dependency "rubyzip", "~> 1.2"
3030

3131
spec.add_development_dependency "bundler", "~> 1.15"
32+
spec.add_development_dependency "keepachangelog_manager", "~> 0.0.1"
3233
spec.add_development_dependency "rspec", "~> 3.0"
3334
spec.add_development_dependency 'rubocop', '~>0.59.0'
3435
spec.add_development_dependency 'yard', '~>0.9.11'

0 commit comments

Comments
 (0)