Skip to content

Commit e27b9c4

Browse files
committed
v1.2.0 bump
1 parent 8e23442 commit e27b9c4

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
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99
### Added
10+
11+
### Changed
12+
13+
### Deprecated
14+
15+
### Removed
16+
17+
### Fixed
18+
19+
### Security
20+
21+
22+
## [1.2.0] - 2021-01-06
23+
### Added
1024
- Environment variable to run a custom initialization script during CI testing: `CUSTOM_INIT_SCRIPT`
1125
- Environment variable to run from a subdirectory during CI testing: `USE_SUBDIR`
1226
- `assertComparativeEquivalent()` and `assertComparativeNotEquivalent()` to evaluate equality on an `a - b == 0` basis (and/or `!(a > b) && !(a < b)`)
@@ -28,10 +42,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2842
- `LibraryProperties.to_h` now properly uses formatters and symbolic keys, in order to support a `.to_s`
2943
- Architectures from `library.properties` are considered when iterating over unit test or examples compilation, as well as the configured platforms
3044

31-
### Deprecated
32-
33-
### Removed
34-
3545
### Fixed
3646
- Warnings about directory name mismatches are now based on proper comparison of strings
3747
- Now using the recommended "stable" URL for the `esp32` board family
@@ -40,8 +50,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4050
- `pinMode()` and `analogReference()` are now functions (no longer macros), because that conflicted with actual function names in the wild
4151
- `analogReadResolution()` and `analogWriteResolution()` are also no longer macros
4252

43-
### Security
44-
4553

4654
## [1.1.0] - 2020-12-02
4755
### Added
@@ -492,7 +500,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
492500
- Skeleton for gem with working unit tests
493501

494502

495-
[Unreleased]: https://github.com/Arduino-CI/arduino_ci/compare/v1.1.0...HEAD
503+
[Unreleased]: https://github.com/Arduino-CI/arduino_ci/compare/v1.2.0...HEAD
504+
[1.2.0]: https://github.com/Arduino-CI/arduino_ci/compare/v1.1.0...v1.2.0
496505
[1.1.0]: https://github.com/Arduino-CI/arduino_ci/compare/v1.0.0...v1.1.0
497506
[1.0.0]: https://github.com/Arduino-CI/arduino_ci/compare/v0.4.0...v1.0.0
498507
[0.4.0]: https://github.com/Arduino-CI/arduino_ci/compare/v0.3.0...v0.4.0

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# ArduinoCI Ruby gem (`arduino_ci`)
33
[![Gem Version](https://badge.fury.io/rb/arduino_ci.svg)](https://rubygems.org/gems/arduino_ci)
4-
[![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/arduino_ci/1.1.0)
4+
[![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/arduino_ci/1.2.0)
55
[![Gitter](https://badges.gitter.im/Arduino-CI/arduino_ci.svg)](https://gitter.im/Arduino-CI/arduino_ci?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
66
[![GitHub Marketplace](https://img.shields.io/badge/Get_it-on_Marketplace-informational.svg)](https://github.com/marketplace/actions/arduino_ci)
77

lib/arduino_ci/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ArduinoCI
2-
VERSION = "1.1.0".freeze
2+
VERSION = "1.2.0".freeze
33
end

0 commit comments

Comments
 (0)