This commit is contained in:
Jorge Aparicio 2018-04-23 20:31:51 +02:00
parent bbc18a24f3
commit ff6e1e7819
3 changed files with 12 additions and 3 deletions

View File

@ -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

View File

@ -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"

View File

@ -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