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. 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 "] 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()) } 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 }