diff --git a/CHANGELOG.md b/CHANGELOG.md index 819fabd..0053ffa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.4.0] - 2024-10-01 + +### Added + +- add `--branch` flag to `git` command + +### Under the hood + +- moved `git` command to `git` module + ## [0.3.2] - 2024-07-23 ### Under the hood diff --git a/Cargo.toml b/Cargo.toml index a685bc3..abf7381 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cliq" description = "open frequently accessed memorable shorten urls from cli" -version = "0.3.2" +version = "0.4.0" edition = "2021" authors = ["Santhosh Chinnasamy"] readme = "README.md" @@ -15,4 +15,4 @@ exclude = [".vscode"] [dependencies] clap = { version = "4.5.4", features = ["derive"] } dirs = "5.0.1" -toml = "0.8.13" +toml = "0.8.19"