Skip to content

Commit c1b747f

Browse files
authored
Merge pull request #36 from braun-embedded/release-0.5.0
Release version 0.5.0
2 parents 4adb942 + a80933d commit c1b747f

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1+
### v0.5.0 (2021-03-02)
2+
3+
- Use `byte` crate instead of `bytes` for encoding/decoding ([#35])
4+
- Fix accidental dependence on `alloc` ([#35])
5+
- Fix crate not compiling on thumbv6m targets ([#35])
6+
7+
[#35]: https://github.com/braun-embedded/rust-ieee802.15.4/pull/35
8+
19

2-
<a name="v0.4.0"></a>
310
### v0.4.0 (2020-09-15)
411

512
- Fix panic when encoding frame header ([#26])
@@ -12,7 +19,6 @@
1219
[#28]: https://github.com/braun-embedded/rust-ieee802.15.4/pull/28
1320

1421

15-
<a name="v0.3.0"></a>
1622
### v0.3.0 (2019-04-20)
1723

1824
- Derive more useful traits for the various types ([#20])
@@ -22,21 +28,18 @@
2228
[#21]: https://github.com/braun-robotics/rust-ieee802.15.4/pull/21
2329

2430

25-
<a name="v0.2.0"></a>
2631
### v0.2.0 (2019-03-22)
2732

2833
- Add support for all address modes, including PAN ID compression ([#18])
2934

3035
[#18]: https://github.com/braun-robotics/rust-ieee802.15.4/pull/18
3136

3237

33-
<a name="v0.1.1"></a>
3438
### v0.1.1 (2019-02-20)
3539

3640
- Fix some minor documentation issues
3741

3842

39-
<a name="v0.1.0"></a>
4043
### v0.1.0 (2019-02-04)
4144

4245
Initial release

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ieee802154"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Hanno Braun <hanno@braun-robotics.com>"]
55
edition = "2018"
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Partial [Rust] implementation of the [IEEE 802.15.4] standard, which defines the
1313
Use Cargo to add this library as a dependency to your project. Add the following to you `Cargo.toml`:
1414
``` toml
1515
[dependencies]
16-
ieee802154 = "0.4"
16+
ieee802154 = "0.5"
1717
```
1818

1919
For more information, please refer to the [API Reference].

0 commit comments

Comments
 (0)