Skip to content

Commit c562eed

Browse files
committed
Merge branch 'unstable' into stable
2 parents 50f16cf + 5d593cf commit c562eed

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ 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-5] - 2025-02-17
10+
## [1.4.0-beta-6] - 2025-02-19
11+
12+
### Added
13+
14+
- `.depl/config.{json|yaml|toml}` configs support.
15+
16+
## [1.4.0-beta-5] - 2025-02-19
1117

1218
### Changed
1319

@@ -447,7 +453,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
447453
- Build support.
448454
- TUI.
449455

450-
[1.4.0-beta-5]: https://github.com/impulse-sw/deployer/compare/1.4.0-beta-5...1.4.0-beta-5
456+
[1.4.0-beta-6]: https://github.com/impulse-sw/deployer/compare/1.4.0-beta-5...1.4.0-beta-6
457+
[1.4.0-beta-5]: https://github.com/impulse-sw/deployer/compare/1.4.0-beta-4...1.4.0-beta-5
451458
[1.4.0-beta-4]: https://github.com/impulse-sw/deployer/compare/1.4.0-beta-3...1.4.0-beta-4
452459
[1.4.0-beta-3]: https://github.com/impulse-sw/deployer/compare/1.4.0-beta-2...1.4.0-beta-3
453460
[1.4.0-beta-2]: https://github.com/impulse-sw/deployer/compare/1.4.0-beta-1...1.4.0-beta-2

Cargo.toml

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

66
[dependencies]

src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,16 @@ use mimalloc::MiMalloc;
7272
#[global_allocator]
7373
static GLOBAL: MiMalloc = MiMalloc;
7474

75-
static PROJECT_CONFS: [&str; 6] = [
75+
static PROJECT_CONFS: [&str; 9] = [
7676
"deploy-config.json",
7777
"deploy-config.yaml",
7878
"deploy-config.toml",
7979
".deploy-config.json",
8080
".deploy-config.yaml",
8181
".deploy-config.toml",
82+
".depl/config.json",
83+
".depl/config.yaml",
84+
".depl/config.toml",
8285
];
8386
static GLOBAL_CONF: &str = "deploy-global.json";
8487
static BUILD_CACHE_LIST: &str = "deploy-builds.json";

0 commit comments

Comments
 (0)