Skip to content

Commit 2e74ebc

Browse files
committed
v0.1.3 bump
1 parent 44429db commit 2e74ebc

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.3] - 2018-01-25
22+
### Added
923
- C++ functions for `assure`; `assert`s will run tests and continue, `assure`s will abort on failures
1024
- Missing dotfiles in the `DoSomething` project have been committed
1125

@@ -14,18 +28,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1428
- `arduino_ci_remote.rb` does unit tests first
1529
- `unittest_main()` is now the macro for the `int main()` of test files
1630

17-
### Deprecated
18-
19-
### Removed
20-
2131
### Fixed
2232
- All test files were reporting "not ok" in TAP output. Now they are OK iff all asserts pass.
2333
- Directories with a C++ extension in their name could cause problems. Now they are ignored.
2434
- `CppLibrary` had trouble with symlinks. It shoudn't anymore.
2535
- `CppLibrary` had trouble with vendor bundles. It might in the future, but I have a better fix ready to go if it's an issue.
2636

27-
### Security
28-
2937

3038
## [0.1.2] - 2018-01-25
3139

@@ -67,7 +75,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6775
- Skeleton for gem with working unit tests
6876

6977

70-
[Unreleased]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.2...HEAD
78+
[Unreleased]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.3...HEAD
79+
[0.1.3]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.2...v0.1.3
7180
[0.1.2]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.1...v0.1.2
7281
[0.1.1]: https://github.com/ifreecarve/arduino_ci/compare/v0.1.0...v0.1.1
7382
[0.1.0]: https://github.com/ifreecarve/arduino_ci/compare/v0.0.1...v0.1.0

README.md

+1-1
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.2)
3+
[![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/arduino_ci/0.1.3)
44

55
# ArduinoCI Ruby gem (`arduino_ci`)
66

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

0 commit comments

Comments
 (0)