diff --git a/CHANGELOG.md b/CHANGELOG.md index ca6c962..b03c00f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [v0.13.0](https://github.com/Songmu/ecschedule/compare/v0.12.0...v0.13.0) - 2025-01-26 +- build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 by @dependabot in https://github.com/Songmu/ecschedule/pull/110 +- build(deps): bump golang.org/x/crypto from 0.24.0 to 0.31.0 by @dependabot in https://github.com/Songmu/ecschedule/pull/113 +- add cron validator by @soh-kuranaga in https://github.com/Songmu/ecschedule/pull/115 +- Multiple tfstate support. by @fujiwara in https://github.com/Songmu/ecschedule/pull/117 +- build(deps): bump golang.org/x/net from 0.26.0 to 0.33.0 by @dependabot in https://github.com/Songmu/ecschedule/pull/114 +- build(deps): bump github.com/hashicorp/go-slug from 0.15.2 to 0.16.3 by @dependabot in https://github.com/Songmu/ecschedule/pull/116 +- Raise error the cron expression within leading or trailing spaces by @Songmu in https://github.com/Songmu/ecschedule/pull/118 +- udpate deps by @Songmu in https://github.com/Songmu/ecschedule/pull/119 + ## [v0.12.0](https://github.com/Songmu/ecschedule/compare/v0.11.4...v0.12.0) - 2024-07-04 - Support CapacityProviderStrategy by @tomoasleep in https://github.com/Songmu/ecschedule/pull/104 - feat: ssm plugin by @ch1aki in https://github.com/Songmu/ecschedule/pull/105 diff --git a/action.yml b/action.yml index c6e3919..3793f82 100644 --- a/action.yml +++ b/action.yml @@ -1,7 +1,7 @@ inputs: version: description: "A version to install ecschedule" - default: "v0.12.0" + default: "v0.13.0" runs: using: "composite" steps: diff --git a/version.go b/version.go index b26758e..bc80ac3 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package ecschedule -const version = "0.12.0" +const version = "0.13.0" var revision = "HEAD"