From 6e950310aeaac698cfcdf03d7fa80df77b32fb8d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Jul 2024 14:12:51 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 13 +++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..3f64092 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog +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). + +## [Unreleased] + +## [0.3.4](https://github.com/DenisGorbachev/create-rust-github-repo/compare/v0.3.3...v0.3.4) - 2024-07-21 + +### Other +- add release-plz +- fix parsing diff --git a/Cargo.lock b/Cargo.lock index 4e02e74..7d48011 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,7 +111,7 @@ checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" [[package]] name = "create-rust-github-repo" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 0ff6402..b004272 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.3.3" +version = "0.3.4" edition = "2021" license = "Apache-2.0 OR MIT" homepage = "https://github.com/DenisGorbachev/create-rust-github-repo"