Skip to content

Commit 23b20f0

Browse files
committed
v0.1.17 bump
1 parent e6c19f9 commit 23b20f0

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

CHANGELOG.md

+16-7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88
### Added
9+
10+
### Changed
11+
12+
### Deprecated
13+
14+
### Removed
15+
16+
### Fixed
17+
18+
### Security
19+
20+
21+
## [0.1.17] - 2019-01-14
22+
### Added
923
- Provide an `itoa` function. It is present in Arduino's runtime environment but not on most (all?) host systems because itoa is not a portable standard function.
1024
- `to_h` and `to_s` functions for `ci_config.rb`
1125
- `CIConfig::clone`
@@ -17,16 +31,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1731
- `autolocate!` for Arduino installations now raises `ArduinoInstallationError` if `force_install` fails
1832
- Errors due to missing YAML are now named `ConfigurationError`
1933

20-
### Deprecated
21-
22-
### Removed
23-
2434
### Fixed
2535
- Determining a working OSX launch command no longer breaks on non-English installations
2636
- `arduino_ci_remote.rb` now honors selected and rejected test files
2737

28-
### Security
29-
3038

3139
## [0.1.16] - 2019-01-06
3240
### Changed
@@ -284,7 +292,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
284292
- Skeleton for gem with working unit tests
285293

286294

287-
[Unreleased]: https://github.com/ianfixes/arduino_ci/compare/v0.1.16...HEAD
295+
[Unreleased]: https://github.com/ianfixes/arduino_ci/compare/v0.1.17...HEAD
296+
[0.1.17]: https://github.com/ianfixes/arduino_ci/compare/v0.1.16...v0.1.17
288297
[0.1.16]: https://github.com/ianfixes/arduino_ci/compare/v0.1.15...v0.1.16
289298
[0.1.15]: https://github.com/ianfixes/arduino_ci/compare/v0.1.14...v0.1.15
290299
[0.1.14]: https://github.com/ianfixes/arduino_ci/compare/v0.1.13...v0.1.14

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# ArduinoCI Ruby gem (`arduino_ci`) [![Gem Version](https://badge.fury.io/rb/arduino_ci.svg)](https://rubygems.org/gems/arduino_ci) [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/arduino_ci/0.1.16)
2+
# ArduinoCI Ruby gem (`arduino_ci`) [![Gem Version](https://badge.fury.io/rb/arduino_ci.svg)](https://rubygems.org/gems/arduino_ci) [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/arduino_ci/0.1.17)
33

44
You want your Arduino library to be automatically built and tested every time someone contributes code to your project on GitHub, but the Arduino IDE lacks the ability to run unit tests. [Arduino CI](https://github.com/ianfixes/arduino_ci) provides that ability.
55

lib/arduino_ci/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ArduinoCI
2-
VERSION = "0.1.16".freeze
2+
VERSION = "0.1.17".freeze
33
end

0 commit comments

Comments
 (0)