Skip to content

Commit a57a955

Browse files
Merge #46
46: Prepare for v0.4.1 r=jonas-schievink a=thalesfragoso I'm not sure if I can publish it though... Co-authored-by: Thales Fragoso <thales.fragosoz@gmail.com>
2 parents beb1c20 + 464f29d commit a57a955

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed

CHANGELOG.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.4.1] - 2021-01-02
11+
1012
### Added
1113

1214
- `const_mut_refs` feature to the dependency `linked_list_allocator` crate.
1315

1416
### Changed
1517

16-
- Bumped the dependency of the `linked_list_allocator` crate to v0.8.8.
18+
- Bumped the dependency of the `linked_list_allocator` crate to v0.8.11.
1719

1820
## [v0.4.0] - 2020-06-05
1921

@@ -81,14 +83,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8183

8284
- Initial version of the allocator
8385

84-
[Unreleased]: https://github.com/japaric/alloc-cortex-m/compare/v0.4.0...HEAD
85-
[v0.4.0]: https://github.com/japaric/alloc-cortex-m/compare/v0.3.5...v0.4.0
86-
[v0.3.5]: https://github.com/japaric/alloc-cortex-m/compare/v0.3.4...v0.3.5
87-
[v0.3.4]: https://github.com/japaric/alloc-cortex-m/compare/v0.3.3...v0.3.4
88-
[v0.3.3]: https://github.com/japaric/alloc-cortex-m/compare/v0.3.2...v0.3.3
89-
[v0.3.2]: https://github.com/japaric/alloc-cortex-m/compare/v0.3.1...v0.3.2
90-
[v0.3.1]: https://github.com/japaric/alloc-cortex-m/compare/v0.3.0...v0.3.1
91-
[v0.3.0]: https://github.com/japaric/alloc-cortex-m/compare/v0.2.2...v0.3.0
92-
[v0.2.2]: https://github.com/japaric/alloc-cortex-m/compare/v0.2.1...v0.2.2
93-
[v0.2.1]: https://github.com/japaric/alloc-cortex-m/compare/v0.2.0...v0.2.1
94-
[v0.2.0]: https://github.com/japaric/alloc-cortex-m/compare/v0.1.0...v0.2.0
86+
[Unreleased]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.4.1...HEAD
87+
[v0.4.1]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.4.0...v0.4.1
88+
[v0.4.0]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.5...v0.4.0
89+
[v0.3.5]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.4...v0.3.5
90+
[v0.3.4]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.3...v0.3.4
91+
[v0.3.3]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.2...v0.3.3
92+
[v0.3.2]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.1...v0.3.2
93+
[v0.3.1]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.0...v0.3.1
94+
[v0.3.0]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.2.2...v0.3.0
95+
[v0.2.2]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.2.1...v0.2.2
96+
[v0.2.1]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.2.0...v0.2.1
97+
[v0.2.0]: https://github.com/rust-embedded/alloc-cortex-m/compare/v0.1.0...v0.2.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ keywords = [
1919
]
2020
license = "MIT OR Apache-2.0"
2121
name = "alloc-cortex-m"
22-
version = "0.4.0"
22+
version = "0.4.1"
2323

2424
[dependencies]
2525
cortex-m = "0.6.2"
2626

2727
[dependencies.linked_list_allocator]
2828
default-features = false
29-
version = "0.8.8"
29+
version = "0.8.11"
3030
features = ["const_mut_refs"]
3131

3232
[dev-dependencies]

0 commit comments

Comments
 (0)