File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,13 @@ All notable changes to this project will be documented in this file.
77The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
88and 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
Original file line number Diff line number Diff line change 11[package ]
22name = " deployer"
3- version = " 1.4.0-beta-5 "
3+ version = " 1.4.0-beta-6 "
44edition = " 2024"
55
66[dependencies ]
Original file line number Diff line number Diff line change @@ -72,13 +72,16 @@ use mimalloc::MiMalloc;
7272#[ global_allocator]
7373static 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] ;
8386static GLOBAL_CONF : & str = "deploy-global.json" ;
8487static BUILD_CACHE_LIST : & str = "deploy-builds.json" ;
You can’t perform that action at this time.
0 commit comments