prep next release candidate
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
This commit is contained in:
parent
c477739f6d
commit
b0159a3ba7
@ -8,6 +8,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
|
# [v0.1.4] 2024-04-24
|
||||||
|
|
||||||
|
## Added
|
||||||
|
|
||||||
|
- `ResultU16::from_be_bytes`
|
||||||
|
- `From<u16>` impl for `ResultU16`.
|
||||||
|
- Optional `defmt` support: `defmt::Format` impl on `ResultU16` if the `defmt` feature is
|
||||||
|
activated.
|
||||||
|
|
||||||
# [v0.1.3] 2024-04-16
|
# [v0.1.3] 2024-04-16
|
||||||
|
|
||||||
Allow `spacepackets` range starting with v0.10 and v0.11.
|
Allow `spacepackets` range starting with v0.10 and v0.11.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "satrs-shared"
|
name = "satrs-shared"
|
||||||
description = "Components shared by multiple sat-rs crates"
|
description = "Components shared by multiple sat-rs crates"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
||||||
homepage = "https://absatsw.irs.uni-stuttgart.de/projects/sat-rs/"
|
homepage = "https://absatsw.irs.uni-stuttgart.de/projects/sat-rs/"
|
||||||
@ -30,4 +30,4 @@ serde = ["dep:serde", "spacepackets/serde"]
|
|||||||
spacepackets = ["dep:defmt", "spacepackets/defmt"]
|
spacepackets = ["dep:defmt", "spacepackets/defmt"]
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
rustdoc-args = ["--cfg", "doc_cfg", "--generate-link-to-definition"]
|
rustdoc-args = ["--cfg", "docs_rs", "--generate-link-to-definition"]
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
//! This crates contains modules shared among other sat-rs framework crates.
|
//! This crates contains modules shared among other sat-rs framework crates.
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
#![cfg_attr(docs_rs, feature(doc_auto_cfg))]
|
||||||
pub mod res_code;
|
pub mod res_code;
|
||||||
|
@ -8,7 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
# [unreleased]
|
# [unreleased]
|
||||||
|
|
||||||
# [v0.2.0-rc.5] 2024-04-23
|
# [v0.2.0-rc.5] 2024-04-24
|
||||||
|
|
||||||
|
## Added
|
||||||
|
|
||||||
|
- Optional `defmt::Format` support for the event types, if the `defmt` feature is activated.
|
||||||
|
|
||||||
## Changed
|
## Changed
|
||||||
|
|
||||||
@ -17,7 +21,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- Renamed `PusEventDispatcher` to `PusEventTmCreatorWithMap`.
|
- Renamed `PusEventDispatcher` to `PusEventTmCreatorWithMap`.
|
||||||
- Renamed `DefaultPusEventU32Dispatcher` to `DefaultPusEventU32EventCreator`.
|
- Renamed `DefaultPusEventU32Dispatcher` to `DefaultPusEventU32EventCreator`.
|
||||||
- Renamed `PusEventMgmtBackendProvider` renamed to `PusEventReportingMap`.
|
- Renamed `PusEventMgmtBackendProvider` renamed to `PusEventReportingMap`.
|
||||||
- Reanmed Event `const_new` methods to `new` and the former `new` methods to `new_checked`.
|
- Reanmed Event `const_new` methods to `new` and the former `new` methods to `new_checked`
|
||||||
|
|
||||||
# [v0.2.0-rc.4] 2024-04-23
|
# [v0.2.0-rc.4] 2024-04-23
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "satrs"
|
name = "satrs"
|
||||||
version = "0.2.0-rc.4"
|
version = "0.2.0-rc.5"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.71.1"
|
rust-version = "1.71.1"
|
||||||
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
||||||
@ -91,7 +91,7 @@ optional = true
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde = "1"
|
serde = "1"
|
||||||
zerocopy = "0.7"
|
zerocopy = "0.7"
|
||||||
once_cell = "1.13"
|
once_cell = "1"
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
|
Loading…
Reference in New Issue
Block a user