Skip to content

Commit 8ef1250

Browse files
committed
v0.1.10 bump
1 parent e118b50 commit 8ef1250

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed

CHANGELOG.md

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,43 @@ 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.10] - 2018-05-06
22+
### Added
923
- Arduino `force_install` on Linux now attempts downloading 3 times and provides more information on failure
1024
- Explicit check for `wget`
1125
- Windows / Appveyor support, enabled largely by contributions from @tomduff
1226
- `long long` support in `String`
1327
- Representative `.gitignore` files in sample projects
14-
- Cross-platform symlinking
28+
- Cross-platform symlinking in `Host`
29+
- OSX CI via Travis, with separate badges
1530

1631
### Changed
1732
- Author
1833
- Splash-screen-skip hack on OSX now falls back on "official" launch method if the hack doesn't work
1934
- Refactored download/install code in prepration for windows CI
2035
- Explicitly use 32-bit math for mocked Random()
21-
22-
### Deprecated
36+
- Ruby-centric download and unzipping of Arduino IDE packages, now with progress dots
2337

2438
### Removed
39+
- `ArduinoDownloaderPosix` became empty, so it was removed
2540

2641
### Fixed
2742
- `Gemfile.lock` files are properly ignored
2843
- Windows hosts won't try to open a display manager
29-
30-
### Security
44+
- `isnan` portability
45+
- OSX force_install
3146

3247

3348
## [0.1.9] - 2018-04-12
@@ -174,7 +189,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
174189
- Skeleton for gem with working unit tests
175190

176191

177-
[Unreleased]: https://github.com/ianfixes/arduino_ci/compare/v0.1.9...HEAD
192+
[Unreleased]: https://github.com/ianfixes/arduino_ci/compare/v0.1.10...HEAD
193+
[0.1.10]: https://github.com/ianfixes/arduino_ci/compare/v0.1.9...v0.1.10
178194
[0.1.9]: https://github.com/ianfixes/arduino_ci/compare/v0.1.8...v0.1.9
179195
[0.1.8]: https://github.com/ianfixes/arduino_ci/compare/v0.1.7...v0.1.8
180196
[0.1.7]: https://github.com/ianfixes/arduino_ci/compare/v0.1.6...v0.1.7

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.9)
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.10)
33

44

55
[Arduino CI](https://github.com/ianfixes/arduino_ci) is a cross-platform Ruby gem for executing Continuous Integration (CI) tests on an Arduino library -- both locally and as part of a service like Travis CI.

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

0 commit comments

Comments
 (0)