Skip to content

Commit 388d71c

Browse files
domenkozarclaude
andcommitted
release: v0.7.1
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent cf51ab8 commit 388d71c

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.1] - 2026-02-08
11+
1012
### Changed
1113
- Improved interactive prompt for missing secrets: lists all missing secrets upfront with descriptions, adds step counter (`[1/3]`), and uses `inquire::Password` for consistent masked input. Removed `rpassword` dependency.
1214

15+
### Fixed
16+
- Use a fork of inquire to support setting multi-line secrets (#32)
17+
1318
## [0.7.0] - 2026-02-08
1419

1520
### Added

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["secretspec", "secretspec-derive", "examples/derive"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.7.0"
6+
version = "0.7.1"
77
edition = "2024"
88

99
[workspace.dependencies]
@@ -37,8 +37,8 @@ secrecy = { version = "0.10.3", features = ["serde"] }
3737
once_cell = "1.21"
3838
google-cloud-secretmanager-v1 = "1.2"
3939
tokio = { version = "1", features = ["rt"] }
40-
secretspec-derive = { version = "0.7.0", path = "./secretspec-derive" }
41-
secretspec = { version = "0.7.0", path = "./secretspec" }
40+
secretspec-derive = { version = "0.7.1", path = "./secretspec-derive" }
41+
secretspec = { version = "0.7.1", path = "./secretspec" }
4242
rand = "0.9"
4343
uuid = { version = "1", features = ["v4"] }
4444
data-encoding = "2"

secretspec-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ quote.workspace = true
1515
proc-macro2.workspace = true
1616
toml.workspace = true
1717
serde.workspace = true
18-
secretspec = { version = "0.7.0", path = "../secretspec" }
18+
secretspec = { version = "0.7.1", path = "../secretspec" }
1919

2020
[dev-dependencies]
2121
trybuild.workspace = true

0 commit comments

Comments
 (0)