From ff6e1e781977496cd2d5efb15cac04747d891c22 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Mon, 23 Apr 2018 20:31:51 +0200 Subject: [PATCH] fix OR --- CHANGELOG.md | 11 ++++++++++- Cargo.toml | 2 +- ci/after_success.sh | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27fe4a91..2ca082e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.1] - 2018-04-23 + +### Added + +- Fixed capacity implementations of `IndexMap` and `IndexSet`. +- A `Extend` implementation to `Vec` +- More `PartialEq` implementations to `Vec` + ## [v0.3.0] - 2018-04-22 ### Changed @@ -93,7 +101,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/japaric/heapless/compare/v0.3.0...HEAD +[Unreleased]: https://github.com/japaric/heapless/compare/v0.3.1...HEAD +[v0.3.1]: https://github.com/japaric/heapless/compare/v0.3.0...v0.3.1 [v0.3.0]: https://github.com/japaric/heapless/compare/v0.2.7...v0.3.0 [v0.2.7]: https://github.com/japaric/heapless/compare/v0.2.6...v0.2.7 [v0.2.6]: https://github.com/japaric/heapless/compare/v0.2.5...v0.2.6 diff --git a/Cargo.toml b/Cargo.toml index 69d418b4..abe51809 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ keywords = [ license = "MIT OR Apache-2.0" name = "heapless" repository = "https://github.com/japaric/heapless" -version = "0.3.0" +version = "0.3.1" [dev-dependencies] scoped_threadpool = "0.1.8" diff --git a/ci/after_success.sh b/ci/after_success.sh index bb8bb511..0bea3652 100644 --- a/ci/after_success.sh +++ b/ci/after_success.sh @@ -1,7 +1,7 @@ set -euxo pipefail main() { - if [ $TARGET != x86_64-unknown-linux-gnu || $TRAVIS_BRANCH != master ]; then + if [ $TARGET != x86_64-unknown-linux-gnu ] || [ $TRAVIS_BRANCH != master ]; then return fi