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 "] 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.