diff --git a/CHANGELOG.md b/CHANGELOG.md index fc9bc8e..71d2d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.2](https://github.com/DenisGorbachev/create-rust-github-repo/compare/v0.5.1...v0.5.2) - 2024-07-30 + +### Fixed +- copy directories recursively + ## [0.5.1](https://github.com/DenisGorbachev/create-rust-github-repo/compare/v0.5.0...v0.5.1) - 2024-07-29 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 61ccb55..aa7927e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -105,7 +105,7 @@ checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" [[package]] name = "create-rust-github-repo" -version = "0.5.1" +version = "0.5.2" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 755e33c..e1aa826 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.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0 OR MIT" homepage = "https://github.com/DenisGorbachev/create-rust-github-repo"