From 7200e10250d9f5ba30a50989ea26ea1cb71bfc9b Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 31 Jan 2024 14:55:19 +0100 Subject: [PATCH 1/4] these flags are new --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6078feb..2f3de2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,5 +52,6 @@ serde = ["dep:serde", "chrono/serde"] alloc = ["postcard/alloc", "chrono/alloc"] [package.metadata.docs.rs] -all-features = true -rustdoc-args = ["--cfg", "doc_cfg"] +features = ["derive", "rc", "unstable"] +targets = ["x86_64-unknown-linux-gnu"] +rustdoc-args = ["--cfg", "doc_cfg", "--generate-link-to-definition"] From c4bbf91be86e55ccb77e691b9199d40cd6b30ed8 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 31 Jan 2024 14:56:41 +0100 Subject: [PATCH 2/4] lets keep all features --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2f3de2a..d106e97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,6 +52,6 @@ serde = ["dep:serde", "chrono/serde"] alloc = ["postcard/alloc", "chrono/alloc"] [package.metadata.docs.rs] -features = ["derive", "rc", "unstable"] +all-features = true targets = ["x86_64-unknown-linux-gnu"] rustdoc-args = ["--cfg", "doc_cfg", "--generate-link-to-definition"] From 84c1c47fe14fb1b6e3a7310fdc6fff9606cd8810 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 1 Feb 2024 17:47:25 +0100 Subject: [PATCH 3/4] not sure what this does --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d106e97..5e4a4cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,5 +53,4 @@ alloc = ["postcard/alloc", "chrono/alloc"] [package.metadata.docs.rs] all-features = true -targets = ["x86_64-unknown-linux-gnu"] rustdoc-args = ["--cfg", "doc_cfg", "--generate-link-to-definition"] From 3353475261bc61a2652a9b77163e40af5ae1c55f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 1 Feb 2024 17:52:45 +0100 Subject: [PATCH 4/4] prep next release --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d64cc0..50d6826 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). # [unreleased] +# [v0.7.0] 2024-02-01 + # [v0.7.0-beta.4] 2024-01-23 ## Fixed diff --git a/Cargo.toml b/Cargo.toml index 5e4a4cc..af6a67c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spacepackets" -version = "0.7.0-beta.4" +version = "0.7.0" edition = "2021" rust-version = "1.61" authors = ["Robin Mueller "]