Skip to content

Commit 767cf6b

Browse files
committed
Merge pull request 'prepare alpha release' (#222) from prep-satrs-v0.3.0-alpha.0 into main
Reviewed-on: https://egit.irs.uni-stuttgart.de/rust/sat-rs/pulls/222
2 parents f3e0609 + 5bf5518 commit 767cf6b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

satrs/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88

99
# [unreleased]
1010

11+
# [v0.3.0-alpha.0] 2025-02-18
12+
1113
`spacepackets` v0.13
1214

1315
## Changed

satrs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "satrs"
3-
version = "0.2.1"
3+
version = "0.3.0-alpha.0"
44
edition = "2021"
55
rust-version = "1.82.0"
66
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]

satrs/src/subsystem.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ impl SequenceExecutionHelper {
121121
/// example by checking [mode replies][ModeReply] received by the children components, and
122122
/// then calling [Self::confirm_sequence_done] to advance to the sequence or complete the
123123
/// sequence.
124-
/// * [ModeCommandingResult::CommandingDone] - The sequence is done. The user can load a new
124+
/// * [ModeCommandingResult::Done] - The sequence is done. The user can load a new
125125
/// sequence now without overwriting the last one. The sequence executor is in
126126
/// [SequenceExecutionHelperState::Idle] again.
127-
/// * [ModeCommandingResult::CommandingStepDone] - The sequence has advanced one step. The user
127+
/// * [ModeCommandingResult::StepDone] - The sequence has advanced one step. The user
128128
/// can now call [Self::run] again to immediately execute the next step in the sequence.
129129
///
130130
/// Generally, periodic execution of the [Self::run] method should be performed while

0 commit comments

Comments
 (0)