diff --git a/Cargo.lock b/Cargo.lock index ef9c8d6..4cdf95e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -142,7 +142,7 @@ dependencies = [ [[package]] name = "gh-workflow-macros" -version = "0.1.0" +version = "0.5.0" dependencies = [ "heck", "quote", diff --git a/crates/gh-workflow-macros/CHANGELOG.md b/crates/gh-workflow-macros/CHANGELOG.md new file mode 100644 index 0000000..11bddf3 --- /dev/null +++ b/crates/gh-workflow-macros/CHANGELOG.md @@ -0,0 +1,8 @@ +# 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] diff --git a/crates/gh-workflow-macros/Cargo.toml b/crates/gh-workflow-macros/Cargo.toml index 69a72a0..ce7771a 100644 --- a/crates/gh-workflow-macros/Cargo.toml +++ b/crates/gh-workflow-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gh-workflow-macros" -version = "0.1.0" +version = "0.5.0" edition = "2021" description = "macros for gh-workflow" diff --git a/crates/gh-workflow/Cargo.toml b/crates/gh-workflow/Cargo.toml index b063637..c2f9547 100644 --- a/crates/gh-workflow/Cargo.toml +++ b/crates/gh-workflow/Cargo.toml @@ -20,7 +20,7 @@ serde = { version = "1.0.210", features = ["derive"] } serde_json = { version = "1.0.128" } serde_yaml = "0.9.34" strum_macros = "0.26.4" -gh-workflow-macros = { path = "../gh-workflow-macros", version = "0.1.0" } +gh-workflow-macros = { path = "../gh-workflow-macros", version = "0.5.0" } [dev-dependencies] insta = "1.40.0"