From 5bf551859178a229bcbf8173cc91419fa59aea19 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 18 Feb 2025 16:49:33 +0100 Subject: [PATCH] prepare alpha release --- satrs/CHANGELOG.md | 2 ++ satrs/Cargo.toml | 2 +- satrs/src/subsystem.rs | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/satrs/CHANGELOG.md b/satrs/CHANGELOG.md index 6ea121d..951e2a3 100644 --- a/satrs/CHANGELOG.md +++ b/satrs/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). # [unreleased] +# [v0.3.0-alpha.0] 2025-02-18 + `spacepackets` v0.13 ## Changed diff --git a/satrs/Cargo.toml b/satrs/Cargo.toml index 09cea4b..7f35b98 100644 --- a/satrs/Cargo.toml +++ b/satrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "satrs" -version = "0.2.1" +version = "0.3.0-alpha.0" edition = "2021" rust-version = "1.82.0" authors = ["Robin Mueller "] diff --git a/satrs/src/subsystem.rs b/satrs/src/subsystem.rs index 0212f76..ea538ac 100644 --- a/satrs/src/subsystem.rs +++ b/satrs/src/subsystem.rs @@ -121,10 +121,10 @@ impl SequenceExecutionHelper { /// example by checking [mode replies][ModeReply] received by the children components, and /// then calling [Self::confirm_sequence_done] to advance to the sequence or complete the /// sequence. - /// * [ModeCommandingResult::CommandingDone] - The sequence is done. The user can load a new + /// * [ModeCommandingResult::Done] - The sequence is done. The user can load a new /// sequence now without overwriting the last one. The sequence executor is in /// [SequenceExecutionHelperState::Idle] again. - /// * [ModeCommandingResult::CommandingStepDone] - The sequence has advanced one step. The user + /// * [ModeCommandingResult::StepDone] - The sequence has advanced one step. The user /// can now call [Self::run] again to immediately execute the next step in the sequence. /// /// Generally, periodic execution of the [Self::run] method should be performed while -- 2.43.0