Skip to content

Commit f0fce10

Browse files
committed
v0.1.14 bump
1 parent 290c2a5 commit f0fce10

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-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.14] - 2018-09-21
22+
### Added
923
- Arduino command wrapper now natively supports board manager URLs
1024
- `arduino_ci_remote.rb` checks for proper board manager URLs for requested platforms
1125
- `arduino_ci_remote.rb` reports on Arduino executable location
@@ -15,15 +29,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1529
- Centralized file listing code in `arduino_ci_remote.rb`
1630
- `arduino_ci_remote.rb` is verbose about platforms, packages, and URLs
1731

18-
### Deprecated
19-
2032
### Removed
2133
- Linux wrapper no longer bails out on long-running commands. That behavior was possible in Arduino 1.6.x that might pop up a graphical error message, but with the display manager removed this is no longer a concern
2234

23-
### Fixed
24-
25-
### Security
26-
2735

2836
## [0.1.13] - 2018-09-19
2937

@@ -246,7 +254,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
246254
- Skeleton for gem with working unit tests
247255

248256

249-
[Unreleased]: https://github.com/ianfixes/arduino_ci/compare/v0.1.13...HEAD
257+
[Unreleased]: https://github.com/ianfixes/arduino_ci/compare/v0.1.14...HEAD
258+
[0.1.14]: https://github.com/ianfixes/arduino_ci/compare/v0.1.13...v0.1.14
250259
[0.1.13]: https://github.com/ianfixes/arduino_ci/compare/v0.1.12...v0.1.13
251260
[0.1.12]: https://github.com/ianfixes/arduino_ci/compare/v0.1.11...v0.1.12
252261
[0.1.11]: https://github.com/ianfixes/arduino_ci/compare/v0.1.10...v0.1.11

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.13)
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.14)
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

exe/arduino_ci_remote.rb

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ def assured_platform(purpose, name, config)
9090

9191
# Return true if the file (or one of the dirs containing it) is hidden
9292
def file_is_hidden_somewhere?(path)
93+
# this is clunkly but pre-2.2-ish ruby doesn't return ascend as an enumerator
9394
path.ascend do |part|
9495
return true if part.basename.to_s.start_with? "."
9596
end

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

0 commit comments

Comments
 (0)