From e389f77063194e982c1741e7220fcb33cf5cb438 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 16 Aug 2023 13:59:34 +0200 Subject: [PATCH 1/4] lets release a beta version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2a145a5..ad97e6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spacepackets" -version = "0.7.0" +version = "0.7.0-beta.0" edition = "2021" rust-version = "1.61" authors = ["Robin Mueller "] From 2b7fcbdd8e1a631d58640a8256b79947272afb93 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 16 Aug 2023 14:00:38 +0200 Subject: [PATCH 2/4] changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47af634..ec5652d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). # [unreleased] -# [v0.7.0] +# [v0.7.0-beta.0] 2023-08-16 - Moved MSRV from v1.60 to v1.61. From ccf7592284fe8e9eec99cbfd169010ebe94ed0a2 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 16 Aug 2023 14:02:33 +0200 Subject: [PATCH 3/4] doc fix --- src/ecss/tm.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ecss/tm.rs b/src/ecss/tm.rs index b8064b3..3302b4a 100644 --- a/src/ecss/tm.rs +++ b/src/ecss/tm.rs @@ -805,8 +805,7 @@ impl<'raw_data> PusTmReader<'raw_data> { self.sec_header.timestamp } - /// If [Self] was constructed [Self::from_bytes], this function will return the slice it was - /// constructed from. Otherwise, [None] will be returned. + /// This function will return the slice [Self] was constructed from. pub fn raw_data(&self) -> &[u8] { self.raw_data } From ffd1bf3769e398f5b3dedf785a8dbfa1f1341d0e Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 16 Aug 2023 14:11:26 +0200 Subject: [PATCH 4/4] add missing doc_cfg --- src/cfdp/lv.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cfdp/lv.rs b/src/cfdp/lv.rs index 96f932d..74f0f17 100644 --- a/src/cfdp/lv.rs +++ b/src/cfdp/lv.rs @@ -70,6 +70,7 @@ impl<'data> Lv<'data> { /// Helper function to build a string LV. This is especially useful for the file or directory /// path LVs #[cfg(feature = "std")] + #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] pub fn new_from_string(string: &'data String) -> Result, TlvLvError> { Self::new(string.as_bytes()) }