Skip to content

Commit 8032909

Browse files
committed
release: update to version 0.4.18
1 parent fbed5b5 commit 8032909

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88

99
- Add dotenv linter `dotenvx lint` to check the .env files in the current directory.
1010

11+
## [0.4.18] - 2025-09-11
12+
13+
### Added
14+
15+
- Add `group`,`name` and `profile` for `dotenvx kp --import` command
16+
- Add `dotenvx decrypt --verify` to verify the signature of the .env file after decryption
17+
1118
## [0.4.17] - 2025-09-06
1219

1320
### Added

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dotenvx-rs"
3-
version = "0.4.17"
3+
version = "0.4.18"
44
edition = "2024"
55
authors = ["linux_china <libing.chen@gmail.com>"]
66
description = "Dotenvx is a Rust command-line/library to encrypt your .env files - limiting their attack vector while retaining their benefits"
@@ -57,7 +57,7 @@ chrono = { version = "0.4.42", features = ["serde"] }
5757
regex = "1.11.2"
5858
lazy_static = "1.5.0"
5959
anyhow = "1.0.99"
60-
reqwest = { version = "0.12.23", features = ["blocking"] }
60+
reqwest = { version = "0.12", features = ["blocking"] }
6161
which = "8.0.0"
6262
symlink = "0.1.0"
6363
url = "2.5"

src/clap_app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use clap::{Arg, ArgAction, Command};
22

3-
pub const VERSION: &str = "0.4.17";
3+
pub const VERSION: &str = "0.4.18";
44

55
pub fn build_dotenvx_app() -> Command {
66
let run_command = Command::new("run")

src/master_key.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use dirs::home_dir;
33
use std::env;
44
use std::process::Stdio;
55

6-
pub const VERSION: &str = "0.4.17";
6+
pub const VERSION: &str = "0.4.18";
77

88
fn main() -> Result<(), Box<dyn std::error::Error>> {
99
let mut raw_args: Vec<String> = env::args().skip(1).collect();

0 commit comments

Comments
 (0)