Skip to content

Commit fe12888

Browse files
committed
release: update to version 0.4.23
1 parent 521d85e commit fe12888

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

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

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

11+
## [0.4.23] - 2025-09-23
12+
13+
### Added
14+
15+
- Add decrypt for any text file, such as XML, Toml, JSON etc.
16+
17+
```xml
18+
<!-- dotenv.public.key: 02b4972559803fa3c2464e93858f80c3a4c86f046f725329f8975e007b393dc4f0 -->
19+
<config>
20+
<password>encrypted:BNexEwjKwt87k9aEgaSng1JY6uW8OkwMYEF</password>
21+
</config>
22+
```
23+
1124
## [0.4.22] - 2025-09-19
1225

1326
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dotenvx-rs"
3-
version = "0.4.22"
3+
version = "0.4.23"
44
edition = "2024"
55
authors = ["linux_china <[email protected]>"]
66
description = "Dotenvx is a Rust command-line/library to encrypt your .env files - limiting their attack vector while retaining their benefits"

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.22";
3+
pub const VERSION: &str = "0.4.23";
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.22";
6+
pub const VERSION: &str = "0.4.23";
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)