Skip to content

Commit 0643ba7

Browse files
committed
Merge branch 'unstable' into stable
2 parents c562eed + c93eae3 commit 0643ba7

File tree

8 files changed

+1035
-946
lines changed

8 files changed

+1035
-946
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [1.4.0-beta-7] - 2025-02-20
11+
12+
### Changed
13+
14+
- Significantly improved configuration readability.
15+
1016
## [1.4.0-beta-6] - 2025-02-19
1117

1218
### Added
@@ -453,6 +459,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
453459
- Build support.
454460
- TUI.
455461

462+
[1.4.0-beta-7]: https://github.com/impulse-sw/deployer/compare/1.4.0-beta-6...1.4.0-beta-7
456463
[1.4.0-beta-6]: https://github.com/impulse-sw/deployer/compare/1.4.0-beta-5...1.4.0-beta-6
457464
[1.4.0-beta-5]: https://github.com/impulse-sw/deployer/compare/1.4.0-beta-4...1.4.0-beta-5
458465
[1.4.0-beta-4]: https://github.com/impulse-sw/deployer/compare/1.4.0-beta-3...1.4.0-beta-4

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deployer"
3-
version = "1.4.0-beta-6"
3+
version = "1.4.0-beta-7"
44
edition = "2024"
55

66
[dependencies]
@@ -17,12 +17,13 @@ indicatif = "0.17"
1717
inquire = { optional = true, git = "https://github.com/markcda/inquire.git", branch = "feat/reorder-values", features = ["reorder"] }
1818
mimalloc = "0.1.43"
1919
nix = { optional = true, version = "0.29", features = ["signal", "user"] }
20+
pretty_yaml = "0.5"
2021
regex = "1.11"
2122
russh = "0.49"
2223
safe-path = "0.1"
2324
serde = { version = "1.0", features = ["derive"] }
2425
serde_json = "1.0"
25-
serde_yaml = "0.9"
26+
serde_yaml = { git = "https://github.com/markcda/serde-yaml.git", tag = "0.9.35-3" }
2627
smart-patcher = { git = "https://github.com/impulse-sw/smart-patcher", tag = "0.2.1", default-features = false }
2728
strip-ansi-escapes = "0.2"
2829
termimad = "0.20"

0 commit comments

Comments
 (0)