diff --git a/CHANGELOG.md b/CHANGELOG.md index 9391616..0ca6c68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,4 +8,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2025-09-10 ### Other -- Initial test release of the `gman` project. \ No newline at end of file +- Initial test release of the `gman` project. +## v0.2.0 (2025-09-12) + +### Feat + +- Added two new flags to output where gman writes logs to and where it expects the config file to live + +### Fix + +- Made the vault file location more fault tolerant +- Attempting to maybe be a bit more explicit about config file handling to fix MacOS tests + +### Refactor + +- Made the creation of the log directories a bit more fault tolerant +- Renamed the provider field in a config file to type to make things a little easier to understand; also removed husky + +## v0.1.0 (2025-09-11) diff --git a/Cargo.lock b/Cargo.lock index e7242ad..5c8cf80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -701,7 +701,7 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" [[package]] name = "gman" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "argon2", diff --git a/Cargo.toml b/Cargo.toml index 58ea36d..71d91c0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gman" -version = "0.1.0" +version = "0.2.0" edition = "2024" authors = ["Alex Clarke "] description = "Universal secret management and injection tool"