diff --git a/CHANGELOG.md b/CHANGELOG.md index 88ec367..fc9bc8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1](https://github.com/DenisGorbachev/create-rust-github-repo/compare/v0.5.0...v0.5.1) - 2024-07-29 + +### Fixed +- use conventional commit message + +### Other +- fix caching +- improve caching + ## [0.5.0](https://github.com/DenisGorbachev/create-rust-github-repo/compare/v0.4.0...v0.5.0) - 2024-07-24 ### Added diff --git a/Cargo.lock b/Cargo.lock index bd9aa08..61ccb55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -105,7 +105,7 @@ checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" [[package]] name = "create-rust-github-repo" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 3d7b6c2..755e33c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "create-rust-github-repo" description = "`create-rust-github-repo` is a CLI program that creates a new repository on GitHub, clones it locally, initializes a Rust project, copies the configs from a pre-existing directory." -version = "0.5.0" +version = "0.5.1" edition = "2021" license = "Apache-2.0 OR MIT" homepage = "https://github.com/DenisGorbachev/create-rust-github-repo"