Skip to content

Commit 7ef236c

Browse files
committed
v0.1.19 bump
1 parent 4118fa5 commit 7ef236c

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,32 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99
### Added
10-
- Added rspec sensitivity to the environment variable `$ARDUINO_CI_SELECT_CPP_TESTS=<glob>` (for `arduino_ci` gem hackers)
11-
- `assertNotNull()` and `assureNotNull()` C++ comparisons
1210

1311
### Changed
14-
- `CiConfig::allowable_unittest_files` now uses `Pathname` to full effect
15-
- `nullptr` now defined in its own class
1612

1713
### Deprecated
1814

1915
### Removed
2016

2117
### Fixed
22-
- Assertions on `nullptr`
23-
- The defintion of `nullptr`
2418

2519
### Security
2620

2721

22+
## [0.1.19] - 2019-01-30
23+
### Added
24+
- Added rspec sensitivity to the environment variable `$ARDUINO_CI_SELECT_CPP_TESTS=<glob>` (for `arduino_ci` gem hackers)
25+
- `assertNotNull()` and `assureNotNull()` C++ comparisons
26+
27+
### Changed
28+
- `CiConfig::allowable_unittest_files` now uses `Pathname` to full effect
29+
- `nullptr` now defined in its own class
30+
31+
### Fixed
32+
- Assertions on `nullptr`
33+
- The defintion of `nullptr`
34+
35+
2836
## [0.1.18] - 2019-01-29
2937
### Added
3038
- `ArduinoInstallation` and `ArduinoDownloader` now allow console output to optionally be set to an `IO` object of choice during `force_install`
@@ -320,7 +328,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
320328
- Skeleton for gem with working unit tests
321329

322330

323-
[Unreleased]: https://github.com/ianfixes/arduino_ci/compare/v0.1.18...HEAD
331+
[Unreleased]: https://github.com/ianfixes/arduino_ci/compare/v0.1.19...HEAD
332+
[0.1.19]: https://github.com/ianfixes/arduino_ci/compare/v0.1.18...v0.1.19
324333
[0.1.18]: https://github.com/ianfixes/arduino_ci/compare/v0.1.17...v0.1.18
325334
[0.1.17]: https://github.com/ianfixes/arduino_ci/compare/v0.1.16...v0.1.17
326335
[0.1.16]: https://github.com/ianfixes/arduino_ci/compare/v0.1.15...v0.1.16

README.md

Lines changed: 1 addition & 1 deletion
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.18)
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.19)
33

44
You want to run tests on your Arduino library (bonus: without hardware present), but the IDE doesn't support that. Arduino CI provides that ability.
55

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.18".freeze
2+
VERSION = "0.1.19".freeze
33
end

0 commit comments

Comments
 (0)