Skip to content

Commit becf990

Browse files
committed
v0.4.0 bump
1 parent 93e59a6 commit becf990

File tree

3 files changed

+22
-11
lines changed

3 files changed

+22
-11
lines changed

Diff for: CHANGELOG.md

+20-9
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+
## [0.4.0] - 2020-11-21
23+
### Added
1024
- `arduino_ci_remote.rb` CLI switch `--skip-examples-compilation`
1125
- Add support for `diditalPinToPort()`, `digitalPinToBitMask()`, `portOutputRegister()`, and `portInputRegister()`
1226
- `CppLibrary.header_files` to find header files
@@ -28,20 +42,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2842
- NUM_SERIAL_PORTS can now be set explicitly
2943
- Improve SPI header strategy
3044

45+
### Deprecated
46+
- `arduino_ci_remote.rb` CLI switch `--skip-compilation`
47+
- Deprecated `arduino_ci_remote.rb` in favor of `arduino_ci.rb`
48+
3149
### Fixed
3250
- Don't define `ostream& operator<<(nullptr_t)` if already defined by Apple
3351
- `CppLibrary.in_tests_dir?` no longer produces an error if there is no tests directory
3452
- The definition of the `_SFR_IO8` macro no longer produces errors about rvalues
3553
- Typo in `cpp_library.rb`, misspelling of `aux_libraries`
3654

37-
### Deprecated
38-
- `arduino_ci_remote.rb` CLI switch `--skip-compilation`
39-
- Deprecated `arduino_ci_remote.rb` in favor of `arduino_ci.rb`
40-
41-
### Removed
42-
43-
### Security
44-
4555

4656
## [0.3.0] - 2019-09-03
4757
### Added
@@ -410,7 +420,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
410420
- Skeleton for gem with working unit tests
411421

412422

413-
[Unreleased]: https://github.com/Arduino-CI/arduino_ci/compare/v0.3.0...HEAD
423+
[Unreleased]: https://github.com/Arduino-CI/arduino_ci/compare/v0.4.0...HEAD
424+
[0.4.0]: https://github.com/Arduino-CI/arduino_ci/compare/v0.3.0...v0.4.0
414425
[0.3.0]: https://github.com/Arduino-CI/arduino_ci/compare/v0.2.1...v0.3.0
415426
[0.2.1]: https://github.com/Arduino-CI/arduino_ci/compare/v0.2.0...v0.2.1
416427
[0.2.0]: https://github.com/Arduino-CI/arduino_ci/compare/v0.1.21...v0.2.0

Diff for: 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/0.3.0)
4+
[![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/arduino_ci/0.4.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

77
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.

Diff for: 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.3.0".freeze
2+
VERSION = "0.4.0".freeze
33
end

0 commit comments

Comments
 (0)