diff --git a/Cargo.lock b/Cargo.lock index 1cb4fbd..41d863d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -124,7 +124,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "gh-workflow" -version = "0.3.0" +version = "0.4.0" dependencies = [ "async-trait", "derive_more", @@ -314,18 +314,18 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "serde" -version = "1.0.214" +version = "1.0.215" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5" +checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.214" +version = "1.0.215" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766" +checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" dependencies = [ "proc-macro2", "quote", diff --git a/workspace/gh-workflow/CHANGELOG.md b/workspace/gh-workflow/CHANGELOG.md index 3cacc51..9437dae 100644 --- a/workspace/gh-workflow/CHANGELOG.md +++ b/workspace/gh-workflow/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## [0.4.0](https://github.com/tailcallhq/rust-gh-workflow/compare/gh-workflow-v0.3.0...gh-workflow-v0.4.0) - 2024-11-13 + +### Other + +- fix lint rule in event.rs + ## [0.3.0](https://github.com/tailcallhq/rust-gh-workflow/compare/gh-workflow-v0.2.1...gh-workflow-v0.3.0) - 2024-11-11 ### Other diff --git a/workspace/gh-workflow/Cargo.toml b/workspace/gh-workflow/Cargo.toml index 1579dc7..3bc14df 100644 --- a/workspace/gh-workflow/Cargo.toml +++ b/workspace/gh-workflow/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gh-workflow" -version = "0.3.0" +version = "0.4.0" edition = "2021" description = "A type-safe GitHub Actions workflow generator"