diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ede5f7..4a61dce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [v0.18.2](https://github.com/x-motemen/blogsync/compare/v0.18.1...v0.18.2) - 2023-10-29 +- return a function instead of a string when retrieving git by @Songmu in https://github.com/x-motemen/blogsync/pull/121 +- make the blogID argument of blogsync pull optional by @Songmu in https://github.com/x-motemen/blogsync/pull/123 +- unshallow if a shallow repository mainly for CI environment by @Songmu in https://github.com/x-motemen/blogsync/pull/124 + ## [v0.18.1](https://github.com/x-motemen/blogsync/compare/v0.18.0...v0.18.1) - 2023-10-28 - suppress git error logs by @Songmu in https://github.com/x-motemen/blogsync/pull/119 diff --git a/action.yml b/action.yml index 9197191..b10d273 100644 --- a/action.yml +++ b/action.yml @@ -3,7 +3,7 @@ description: setup blogsync to publish to Hatena Blog inputs: version: description: "A version to install blogsync" - default: "v0.18.1" + default: "v0.18.2" required: false runs: using: 'composite' diff --git a/version.go b/version.go index 9645ff5..1c51125 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.18.1" +const version = "0.18.2" var revision = "HEAD"