From 1b7d128a103fe107fb03103edefab5fe8202f7a6 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 26 Nov 2024 10:42:25 +0100 Subject: [PATCH] prepare v0.2.0 --- CHANGELOG.md | 2 ++ Cargo.toml | 4 ++-- docs.sh | 3 +++ 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100755 docs.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 97202b6..212d998 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). # [unreleased] +# [v0.2.0] 2024-11-26 + - Bumped `thiserror` to v2 - Bumped `spacepackets` to v0.13 - The source and destination handlers can now be used without the `std` feature and only require diff --git a/Cargo.toml b/Cargo.toml index 4eea59c..f8258ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "cfdp-rs" -version = "0.1.0" +version = "0.2.0" edition = "2021" -rust-version = "1.75.0" +rust-version = "1.81.0" authors = ["Robin Mueller "] description = "High level CCSDS File Delivery Protocol components" homepage = "https://egit.irs.uni-stuttgart.de/rust/cfdp" diff --git a/docs.sh b/docs.sh new file mode 100755 index 0000000..37563d2 --- /dev/null +++ b/docs.sh @@ -0,0 +1,3 @@ +#!/bin/sh +export RUSTDOCFLAGS="--cfg docsrs --generate-link-to-definition -Z unstable-options" +cargo +nightly doc --all-features --open -- 2.43.0