-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix: (bug) always use the same encrypter even if different keyring …
…entries are given - doc: (derive macros) add doc for `PersistSource` and `SecretSource`
- Loading branch information
1 parent
fc59da8
commit 05ca931
Showing
8 changed files
with
126 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
This project adheres to [Semantic Versioning](https://semver.org). | ||
|
||
<!-- | ||
Note: In this file, do not use the hard wrap in the middle of a sentence for compatibility with GitHub comment style markdown rendering. | ||
--> | ||
|
||
## [Unreleased] | ||
|
||
## [0.2.4] - 2024-06-19 | ||
|
||
- fix: (bug) always use the same encrypter even if different keyring entries are given | ||
- doc: (derive macros) add doc for `PersistSource` and `SecretSource` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ members = ["encrypt-config", "encrypt-config-derive", "tests", "examples"] | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.2.3" | ||
version = "0.2.4" | ||
authors = ["Louis <[email protected]>"] | ||
description = "A Rust crate to manage, persist and encrypt your configurations." | ||
license = "MIT" | ||
|
@@ -13,7 +13,7 @@ documentation = "https://docs.rs/encrypt-config" | |
|
||
[workspace.dependencies] | ||
encrypt_config = { path = "encrypt-config" } | ||
encrypt_config_derive = { path = "encrypt-config-derive", version = "0.2.2" } | ||
encrypt_config_derive = { path = "encrypt-config-derive", version = "0.2.4" } | ||
|
||
[profile.dev] | ||
opt-level = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters