Skip to content

Commit 12102bb

Browse files
committed
v0.2.1 bump
1 parent 49a7b1d commit 12102bb

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99
### Added
10-
- Minimal Wire mocks. Will not provide support for unit testing I2C communication yet, but will allow compilation of libraries that use I2C.
11-
- `StreamTape` class now bridges `Stream` and `HardwareSerial` to allow general-purpose stream mocking & history
1210

1311
### Changed
14-
- Arduino command failures (to read preferences) now causes a fatal error, with help for troubleshooting the underlying command
1512

1613
### Deprecated
1714

1815
### Removed
1916

2017
### Fixed
21-
- Arduino library dependencies are now installed prior to unit testing, instead of prior to compilation testing. Whoops.
22-
- Arduino library dependencies with spaces in their names are now handled properly during compilation -- spaces are automatically coerced to underscores
2318

2419
### Security
2520

2621

22+
## [0.2.1] - 2019-08-12
23+
### Added
24+
- Minimal Wire mocks. Will not provide support for unit testing I2C communication yet, but will allow compilation of libraries that use I2C.
25+
- `StreamTape` class now bridges `Stream` and `HardwareSerial` to allow general-purpose stream mocking & history
26+
27+
### Changed
28+
- Arduino command failures (to read preferences) now causes a fatal error, with help for troubleshooting the underlying command
29+
30+
### Fixed
31+
- Arduino library dependencies are now installed prior to unit testing, instead of prior to compilation testing. Whoops.
32+
- Arduino library dependencies with spaces in their names are now handled properly during compilation -- spaces are automatically coerced to underscores
33+
34+
2735
## [0.2.0] - 2019-02-20
2836
### Added
2937
- `release-new-version.sh` script
@@ -373,7 +381,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
373381
- Skeleton for gem with working unit tests
374382

375383

376-
[Unreleased]: https://github.com/ianfixes/arduino_ci/compare/v0.2.0...HEAD
384+
[Unreleased]: https://github.com/ianfixes/arduino_ci/compare/v0.2.1...HEAD
385+
[0.2.1]: https://github.com/ianfixes/arduino_ci/compare/v0.2.0...v0.2.1
377386
[0.2.0]: https://github.com/ianfixes/arduino_ci/compare/v0.1.21...v0.2.0
378387
[0.1.21]: https://github.com/ianfixes/arduino_ci/compare/v0.1.20...v0.1.21
379388
[0.1.20]: https://github.com/ianfixes/arduino_ci/compare/v0.1.19...v0.1.20

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.2.0)
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.2.1)
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.2.0".freeze
2+
VERSION = "0.2.1".freeze
33
end

0 commit comments

Comments
 (0)