From 3e97bf0c15d89098c60e249170eb1d3089ca5d3a Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 26 Sep 2023 17:10:21 +0200 Subject: [PATCH 1/2] bump version specifier --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fd21d59..ef0625d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spacepackets" -version = "0.7.0-beta.1" +version = "0.7.0-beta.2" edition = "2021" rust-version = "1.61" authors = ["Robin Mueller "] -- 2.43.0 From 393c73cedf9528ff527f7906242e57b8c4e3971f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 26 Sep 2023 17:11:39 +0200 Subject: [PATCH 2/2] re-enable failing docs builds --- automation/Jenkinsfile | 4 +--- release-checklist.md | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index 7b7d35c..b9d4ea4 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -20,9 +20,7 @@ pipeline { } stage('Docs') { steps { - catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { - sh 'cargo +nightly doc --all-features' - } + sh 'cargo +nightly doc --all-features' } } stage('Rustfmt') { diff --git a/release-checklist.md b/release-checklist.md index 1a5defc..8552f3f 100644 --- a/release-checklist.md +++ b/release-checklist.md @@ -4,7 +4,7 @@ Checklist for new releases # Pre-Release 1. Make sure any new modules are documented sufficiently enough and check docs with - `cargo doc --all-features --open`. + `cargo +nightly doc --all-features --open`. 2. Bump version specifier in `Cargo.toml`. 3. Update `CHANGELOG.md`: Convert `unreleased` section into version section with date and add new `unreleased` section. -- 2.43.0