From 3c723284666277917dc65ab3df962fec51b00e2b Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 6 Dec 2023 18:13:22 +0100 Subject: [PATCH 1/2] prepare new beta version --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18c7dcd..b1ea503 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-beta.3] 2023-12-06 + ## Added - Add `WritablePduPacket` trait which is a common trait of all CFDP PDU implementations. diff --git a/Cargo.toml b/Cargo.toml index ef0625d..c01a134 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spacepackets" -version = "0.7.0-beta.2" +version = "0.7.0-beta.3" edition = "2021" rust-version = "1.61" authors = ["Robin Mueller "] -- 2.43.0 From 0ddb9c69f1b71101314e45599fe1ee1b1571760f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 6 Dec 2023 20:01:36 +0100 Subject: [PATCH 2/2] jenkinsfile fixes --- automation/Jenkinsfile | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index fae720d..2965b04 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -62,15 +62,13 @@ pipeline { } } steps { - script { - withEnv(['RUSTFLAGS=-Cinstrument-coverage', 'LLVM_PROFILE_FILE=target/coverage/%p-%m.profraw']) { - echo "Executing tests with coverage" - sh 'cargo test' - sh 'grcov . -s . --binary-path ./target/debug -t html --branch --ignore-not-existing -o ./target/debug/coverage/' - sshagent(credentials: ['documentation-buildfix']) { - // Deploy to Apache webserver - sh 'rsync --mkpath -r --delete ./target/debug/coverage/ buildfix@documentation.irs.uni-stuttgart.de:/projects/spacepackets-rs/coverage/latest' - } + withEnv(['RUSTFLAGS=-Cinstrument-coverage', 'LLVM_PROFILE_FILE=target/coverage/%p-%m.profraw']) { + echo "Executing tests with coverage" + sh 'cargo test --all-features' + sh 'grcov . -s . --binary-path ./target/debug -t html --branch --ignore-not-existing -o ./target/debug/coverage/' + sshagent(credentials: ['documentation-buildfix']) { + // Deploy to Apache webserver + sh 'rsync --mkpath -r --delete ./target/debug/coverage/ buildfix@documentation.irs.uni-stuttgart.de:/projects/spacepackets-rs/coverage/latest' } } } -- 2.43.0