mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-27 04:20:24 +00:00
fix OR
This commit is contained in:
parent
bbc18a24f3
commit
ff6e1e7819
11
CHANGELOG.md
11
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
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user