bump all versions
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good

This commit is contained in:
Robin Müller 2024-02-17 20:58:50 +01:00
parent e1c0fbf49e
commit 9f16a86f7d
Signed by: muellerr
GPG Key ID: A649FB78196E3849
4 changed files with 10 additions and 11 deletions

View File

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
# [unreleased]
# [v0.1.1] 2024-02-17
- Bumped `spacepackets` to v0.10.0
# [v0.1.0] 2024-02-12
Initial release containing the `resultcode` macro.

View File

@ -1,6 +1,6 @@
[package]
name = "satrs-mib"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.61"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
@ -23,13 +23,12 @@ version = "1"
optional = true
[dependencies.satrs-shared]
version = "0.1.1"
path = "../satrs-shared"
version = "0.1.2"
features = ["serde"]
[dependencies.satrs-mib-codegen]
path = "codegen"
version = "0.1.0"
version = "0.1.1"
[dependencies.serde]
version = "1"

View File

@ -1,6 +1,6 @@
[package]
name = "satrs-mib-codegen"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "satrs-mib proc macro implementation"
homepage = "https://egit.irs.uni-stuttgart.de/rust/sat-rs"
@ -26,7 +26,7 @@ features = ["full"]
[dev-dependencies]
trybuild = { version = "1", features = ["diff"] }
satrs-shared = "0.1.1"
satrs-shared = "0.1.2"
[dev-dependencies.satrs-mib]
path = ".."

View File

@ -17,10 +17,7 @@ delegate = ">0.7, <=0.10"
paste = "1"
smallvec = "1"
crc = "3"
[dependencies.satrs-shared]
# version = "0.1.1"
path = "../satrs-shared"
satrs-shared = "0.1.2"
[dependencies.num_enum]
version = ">0.5, <=0.7"
@ -72,7 +69,6 @@ optional = true
[dependencies.spacepackets]
version = "0.10"
git = "https://github.com/us-irs/spacepackets-rs.git"
default-features = false
[dependencies.cobs]