diff --git a/CHANGELOG.md b/CHANGELOG.md index 1598c1d..ca8fedd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v0.2.0 (2025-09-30) + +### Feat + +- gopass support +- Added command aliases to make the CLI more universal +- Added dynamic tab completions for the profile, providers, and the secrets in any given secret manager +- Users can now specify a default provider to use with each run config, so they don't need to explicitly specify which to use when wanting to run different applications. + ## v0.1.0 (2025-09-17) ### Feat diff --git a/Cargo.lock b/Cargo.lock index d222d35..4612b6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1632,7 +1632,7 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" [[package]] name = "gman" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "argon2", diff --git a/Cargo.toml b/Cargo.toml index 81f0dd5..ebb8664 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 command line secret management and injection tool"