prep next beta release
Some checks failed
Rust/spacepackets/pipeline/head There was a failure building this commit

This commit is contained in:
Robin Müller 2023-08-28 18:36:00 +02:00
parent 00fdfde015
commit 49b50ec682
Signed by: muellerr
GPG Key ID: FCE0B2BD2195142F
2 changed files with 5 additions and 3 deletions

View File

@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
# [unreleased] # [unreleased]
# [v0.7.0-beta.1] 2023-08-28
## Changed ## Changed
- The `Tlv` and `Lv` API return `&[u8]` instead of `Option<&[u8]>`. - The `Tlv` and `Lv` API return `&[u8]` instead of `Option<&[u8]>`.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "spacepackets" name = "spacepackets"
version = "0.7.0-beta.0" version = "0.7.0-beta.1"
edition = "2021" edition = "2021"
rust-version = "1.61" rust-version = "1.61"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"] authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
@ -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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
zerocopy = "0.6" zerocopy = ">0.5, <=0.7"
crc = "3" crc = "3"
delegate = ">=0.8, <0.11" delegate = ">=0.8, <0.11"
@ -22,7 +22,7 @@ version = "1"
optional = true optional = true
[dependencies.num_enum] [dependencies.num_enum]
version = "0.6" version = ">0.5, <=0.7"
default-features = false default-features = false
[dependencies.serde] [dependencies.serde]