diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d5166e..6433218 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). # [unreleased] +# [v0.7.0-beta.1] 2023-08-28 + ## Changed - The `Tlv` and `Lv` API return `&[u8]` instead of `Option<&[u8]>`. diff --git a/Cargo.toml b/Cargo.toml index ad97e6b..e58b118 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spacepackets" -version = "0.7.0-beta.0" +version = "0.7.0-beta.1" edition = "2021" rust-version = "1.61" authors = ["Robin Mueller "] @@ -13,7 +13,7 @@ categories = ["aerospace", "aerospace::space-protocols", "no-std", "hardware-sup # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -zerocopy = "0.6" +zerocopy = ">0.5, <=0.7" crc = "3" delegate = ">=0.8, <0.11" @@ -22,7 +22,7 @@ version = "1" optional = true [dependencies.num_enum] -version = "0.6" +version = ">0.5, <=0.7" default-features = false [dependencies.serde]