diff --git a/satrs-shared/CHANGELOG.md b/satrs-shared/CHANGELOG.md index 8e718d8..db1e781 100644 --- a/satrs-shared/CHANGELOG.md +++ b/satrs-shared/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). # [unreleased] +# [v0.2.0] 2024-01-04 + +Semver bump, due to added features in v0.1.4 + # [v0.1.4] 2024-04-24 ## Added diff --git a/satrs-shared/Cargo.toml b/satrs-shared/Cargo.toml index 175f909..67a3928 100644 --- a/satrs-shared/Cargo.toml +++ b/satrs-shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "satrs-shared" description = "Components shared by multiple sat-rs crates" -version = "0.1.4" +version = "0.2.0" edition = "2021" authors = ["Robin Mueller "] homepage = "https://absatsw.irs.uni-stuttgart.de/projects/sat-rs/" @@ -27,7 +27,8 @@ default-features = false [features] serde = ["dep:serde", "spacepackets/serde"] -spacepackets = ["dep:defmt", "spacepackets/defmt"] +defmt = ["dep:defmt", "spacepackets/defmt"] [package.metadata.docs.rs] -rustdoc-args = ["--cfg", "docs_rs", "--generate-link-to-definition"] +all-features = true +rustdoc-args = ["--generate-link-to-definition"] diff --git a/satrs-shared/src/lib.rs b/satrs-shared/src/lib.rs index 428f01f..4fdba60 100644 --- a/satrs-shared/src/lib.rs +++ b/satrs-shared/src/lib.rs @@ -1,4 +1,4 @@ //! This crates contains modules shared among other sat-rs framework crates. #![no_std] -#![cfg_attr(docs_rs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_auto_cfg))] pub mod res_code; diff --git a/satrs/Cargo.toml b/satrs/Cargo.toml index ec2b2d0..94725f7 100644 --- a/satrs/Cargo.toml +++ b/satrs/Cargo.toml @@ -20,14 +20,14 @@ smallvec = "1" crc = "3" [dependencies.satrs-shared] -version = ">=0.1.3, <0.2" +version = ">=0.1.3, <=0.2" [dependencies.num_enum] version = ">0.5, <=0.7" default-features = false [dependencies.spacepackets] -version = "0.11" +version = "0.12" default-features = false [dependencies.cobs]