diff --git a/.config/release-please-manifest.json b/.config/release-please-manifest.json index 1aaf800..f4c1d6b 100644 --- a/.config/release-please-manifest.json +++ b/.config/release-please-manifest.json @@ -1,3 +1,3 @@ { - "crates/git-template": "0.0.0" + "crates/git-template": "0.1.0" } diff --git a/Cargo.lock b/Cargo.lock index 10c993d..6c6785c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -296,7 +296,7 @@ dependencies = [ [[package]] name = "git-template" -version = "0.0.0" +version = "0.1.0" dependencies = [ "assert_cmd", "clap", diff --git a/crates/git-template/CHANGELOG.md b/crates/git-template/CHANGELOG.md new file mode 100644 index 0000000..9dfaf1f --- /dev/null +++ b/crates/git-template/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +## 0.1.0 (2026-03-23) + + +### Features + +* Add .gittemplate config format (TOML, files glob + [[var]]) ([fdd3ee3](https://github.com/git-ents/git-template/commit/fdd3ee37de1cc432a1a5d633fa672ac857ca4066)) +* Add editor-based variable prompt ([fdd3ee3](https://github.com/git-ents/git-template/commit/fdd3ee37de1cc432a1a5d633fa672ac857ca4066)) +* Add git template init command ([fdd3ee3](https://github.com/git-ents/git-template/commit/fdd3ee37de1cc432a1a5d633fa672ac857ca4066)) +* Add minijinja template rendering with unresolved-expr warnings ([fdd3ee3](https://github.com/git-ents/git-template/commit/fdd3ee37de1cc432a1a5d633fa672ac857ca4066)) +* Implement git template init ([fdd3ee3](https://github.com/git-ents/git-template/commit/fdd3ee37de1cc432a1a5d633fa672ac857ca4066)) diff --git a/crates/git-template/Cargo.toml b/crates/git-template/Cargo.toml index d5a2bfd..ab7a89c 100644 --- a/crates/git-template/Cargo.toml +++ b/crates/git-template/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-template" -version = "0.0.0" +version = "0.1.0" edition.workspace = true publish.workspace = true license.workspace = true