Skip to content

Commit

Permalink
v0.4.0 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ianfixes committed Nov 22, 2020
1 parent 93e59a6 commit becf990
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
29 changes: 20 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security


## [0.4.0] - 2020-11-21
### Added
- `arduino_ci_remote.rb` CLI switch `--skip-examples-compilation`
- Add support for `diditalPinToPort()`, `digitalPinToBitMask()`, `portOutputRegister()`, and `portInputRegister()`
- `CppLibrary.header_files` to find header files
Expand All @@ -28,20 +42,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- NUM_SERIAL_PORTS can now be set explicitly
- Improve SPI header strategy

### Deprecated
- `arduino_ci_remote.rb` CLI switch `--skip-compilation`
- Deprecated `arduino_ci_remote.rb` in favor of `arduino_ci.rb`

### Fixed
- Don't define `ostream& operator<<(nullptr_t)` if already defined by Apple
- `CppLibrary.in_tests_dir?` no longer produces an error if there is no tests directory
- The definition of the `_SFR_IO8` macro no longer produces errors about rvalues
- Typo in `cpp_library.rb`, misspelling of `aux_libraries`

### Deprecated
- `arduino_ci_remote.rb` CLI switch `--skip-compilation`
- Deprecated `arduino_ci_remote.rb` in favor of `arduino_ci.rb`

### Removed

### Security


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


[Unreleased]: https://github.com/Arduino-CI/arduino_ci/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/Arduino-CI/arduino_ci/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/Arduino-CI/arduino_ci/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/Arduino-CI/arduino_ci/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/Arduino-CI/arduino_ci/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/Arduino-CI/arduino_ci/compare/v0.1.21...v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# 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.3.0)
[![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/arduino_ci/0.4.0)
[![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)

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.
Expand Down
2 changes: 1 addition & 1 deletion lib/arduino_ci/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ArduinoCI
VERSION = "0.3.0".freeze
VERSION = "0.4.0".freeze
end

0 comments on commit becf990

Please sign in to comment.