File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 88
99- Add dotenv linter ` dotenvx lint ` to check the .env files in the current directory.
1010
11+ ## [ 0.4.4] - 2025-08-06
12+
13+ ### Add
14+
15+ - Fix some bugs with Spring Boot support.
16+ - add alias ` kp ` for ` keypair ` command
17+
1118## [ 0.4.3] - 2025-08-04
1219
1320dotenvx introduces ` $HOME/.dotenvx/.env.keys.json ` to manage key pairs globally,
@@ -22,7 +29,7 @@ and you can use `dotenvx set --encrypt <Key> <Value>` to set the key-value pairs
2229- Add global keys store ` $HOME/.dotenvx/.env.keys.json ` to manage key pairs.
2330- Add private key import: ` dotenvx keypair --import `
2431- Add json dump for decryption: ` dotenvx decrypt --dump `
25- - Add GoFr support: auto-detect ` configs/.env `
32+ - Add GoFr support: auto-detect ` configs/.env `
2633- List all global keys: ` dotenvx keypair --all `
2734
2835## [ 0.4.2] - 2025-08-04
Original file line number Diff line number Diff line change 11[package ]
22name = " dotenvx-rs"
3- version = " 0.4.3 "
3+ version = " 0.4.4 "
44edition = " 2024"
55authors = [
" linux_china <[email protected] >" ]
66description = " Dotenvx is a Rust command-line/library to encrypt your .env files - limiting their attack vector while retaining their benefits"
Original file line number Diff line number Diff line change 11use clap:: { Arg , ArgAction , Command } ;
22
3- pub const VERSION : & str = "0.4.3 " ;
3+ pub const VERSION : & str = "0.4.4 " ;
44
55pub fn build_dotenvx_app ( ) -> Command {
66 let run_command = Command :: new ( "run" )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ use dirs::home_dir;
33use std:: env;
44use std:: process:: Stdio ;
55
6- pub const VERSION : & str = "0.4.3 " ;
6+ pub const VERSION : & str = "0.4.4 " ;
77
88fn main ( ) -> Result < ( ) , Box < dyn std:: error:: Error > > {
99 let mut raw_args: Vec < String > = env:: args ( ) . skip ( 1 ) . collect ( ) ;
You can’t perform that action at this time.
0 commit comments