Skip to content

Commit 24333f4

Browse files
committed
v0.1.6 bump
1 parent d09afc2 commit 24333f4

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

CHANGELOG.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,26 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88
### Added
9-
- `CppLibrary` can now report `gcc_version`
109

1110
### Changed
12-
- `arduino_ci_remote.rb` now formats tasks with multiple output lines more nicely
13-
- Templates for CI classes are now pass-by-value (no const reference)
1411

1512
### Deprecated
1613

1714
### Removed
1815

16+
### Fixed
17+
18+
### Security
19+
20+
21+
## [0.1.6] - 2018-03-07
22+
### Added
23+
- `CppLibrary` can now report `gcc_version`
24+
25+
### Changed
26+
- `arduino_ci_remote.rb` now formats tasks with multiple output lines more nicely
27+
- Templates for CI classes are now pass-by-value (no const reference)
28+
1929
### Fixed
2030
- Replaced pipes with `Open3.capture3` to avoid deadlocks when commands have too much output
2131
- `ci_config.rb` now returns empty arrays (instead of nil) for undefined config keys
@@ -42,19 +52,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4252
### Changed
4353
- Unit test executables print to STDERR just in case there are segfaults. Uh, just in case I ever write any.
4454

45-
### Deprecated
46-
47-
### Removed
48-
4955
### Fixed
5056
- OSX no longer experiences `javax.net.ssl.SSLKeyException: RSA premaster secret error` messages when downloading board package files
5157
- `arduino_ci_remote.rb` no longer makes unnecessary changes to the board being tested
5258
- Scripts no longer crash if there is no `test/` directory
5359
- Scripts no longer crash if there is no `examples/` directory
5460
- `assureTrue` and `assureFalse` now `assure` instead of just `assert`ing.
5561

56-
### Security
57-
5862

5963
## [0.1.4] - 2018-02-01
6064
### Added
@@ -132,7 +136,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
132136
- Skeleton for gem with working unit tests
133137

134138

135-
[Unreleased]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.5...HEAD
139+
[Unreleased]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.6...HEAD
140+
[0.1.6]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.5...v0.1.6
136141
[0.1.5]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.4...v0.1.5
137142
[0.1.4]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.3...v0.1.4
138143
[0.1.3]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.2...v0.1.3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Gem Version](https://badge.fury.io/rb/arduino_ci.svg)](https://rubygems.org/gems/arduino_ci)
22
[![Build Status](https://travis-ci.org/ifreecarve/arduino_ci.svg)](https://travis-ci.org/ifreecarve/arduino_ci)
3-
[![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/arduino_ci/0.1.5)
3+
[![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/arduino_ci/0.1.6)
44

55
# ArduinoCI Ruby gem (`arduino_ci`)
66

lib/arduino_ci/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ArduinoCI
2-
VERSION = "0.1.5".freeze
2+
VERSION = "0.1.6".freeze
33
end

0 commit comments

Comments
 (0)