Skip to content

Commit

Permalink
1.7.3 procedure stage alias
Browse files Browse the repository at this point in the history
  • Loading branch information
mbecker20 committed Jun 11, 2024
1 parent 25c8d25 commit 8b8c89d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["bin/*", "lib/*", "client/core/rs", "client/periphery/rs"]

[workspace.package]
version = "1.7.2"
version = "1.7.3"
edition = "2021"
authors = ["mbecker20 <[email protected]>"]
license = "GPL-3.0-or-later"
Expand All @@ -15,7 +15,7 @@ monitor_client = { path = "client/core/rs" }

[workspace.dependencies]
# LOCAL
monitor_client = "1.7.2"
monitor_client = "1.7.3"
periphery_client = { path = "client/periphery/rs" }
command = { path = "lib/command" }
logger = { path = "lib/logger" }
Expand Down
1 change: 1 addition & 0 deletions client/core/rs/src/entities/procedure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ pub type _PartialProcedureConfig = PartialProcedureConfig;
pub struct ProcedureConfig {
/// The stages to be run by the procedure.
#[serde(default, alias = "stage")]
#[partial_attr(serde(alias = "stage"))]
#[builder(default)]
pub stages: Vec<ProcedureStage>,

Expand Down

0 comments on commit 8b8c89d

Please sign in to comment.