@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.5.0] - 2022-12-06
11
+
12
+ ### Changed
13
+
14
+ - Renamed crate from ` alloc-cortex-m ` to ` embedded-alloc ` .
15
+ - Renamed ` CortexMHeap ` to ` Heap ` .
16
+ - Use ` critical-section ` to lock the heap, instead of ` cortex_m::interrupt::free() ` .
17
+ This allows using this crate on non-Cortex-M systems, or on
18
+ Cortex-M systems that require a custom critical section implementation.
19
+
10
20
## [ v0.4.3] - 2022-11-03
11
21
12
22
### Changed
@@ -96,17 +106,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
96
106
97
107
- Initial version of the allocator
98
108
99
- [ Unreleased ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.4.3...HEAD
100
- [ v0.4.3 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.4.2...v0.4.3
101
- [ v0.4.2 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.4.1...v0.4.2
102
- [ v0.4.1 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.4.0...v0.4.1
103
- [ v0.4.0 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.5...v0.4.0
104
- [ v0.3.5 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.4...v0.3.5
105
- [ v0.3.4 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.3...v0.3.4
106
- [ v0.3.3 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.2...v0.3.3
107
- [ v0.3.2 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.1...v0.3.2
108
- [ v0.3.1 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.3.0...v0.3.1
109
- [ v0.3.0 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.2.2...v0.3.0
110
- [ v0.2.2 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.2.1...v0.2.2
111
- [ v0.2.1 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.2.0...v0.2.1
112
- [ v0.2.0 ] : https://github.com/rust-embedded/alloc-cortex-m/compare/v0.1.0...v0.2.0
109
+ [ Unreleased ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.5.0...HEAD
110
+ [ v0.5.0 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.4.3...v0.5.0
111
+ [ v0.4.3 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.4.2...v0.4.3
112
+ [ v0.4.2 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.4.1...v0.4.2
113
+ [ v0.4.1 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.4.0...v0.4.1
114
+ [ v0.4.0 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.3.5...v0.4.0
115
+ [ v0.3.5 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.3.4...v0.3.5
116
+ [ v0.3.4 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.3.3...v0.3.4
117
+ [ v0.3.3 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.3.2...v0.3.3
118
+ [ v0.3.2 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.3.1...v0.3.2
119
+ [ v0.3.1 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.3.0...v0.3.1
120
+ [ v0.3.0 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.2.2...v0.3.0
121
+ [ v0.2.2 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.2.1...v0.2.2
122
+ [ v0.2.1 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.2.0...v0.2.1
123
+ [ v0.2.0 ] : https://github.com/rust-embedded/embedded-alloc/compare/v0.1.0...v0.2.0
0 commit comments