diff --git a/CHANGELOG.md b/CHANGELOG.md index bf5be84..108d9a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [v0.16.0](https://github.com/x-motemen/blogsync/compare/v0.15.0...v0.16.0) - 2023-10-14 +- add doc directory by @Songmu in https://github.com/x-motemen/blogsync/pull/92 +- post new entry when the pushed entry has no EditURL by @Songmu in https://github.com/x-motemen/blogsync/pull/91 +- set the updated to nil when the entry is still draft by @Songmu in https://github.com/x-motemen/blogsync/pull/95 + ## [v0.15.0](https://github.com/x-motemen/blogsync/compare/v0.14.2...v0.15.0) - 2023-10-13 - [breaking change] normalize localRoot to absolute path by @Songmu in https://github.com/x-motemen/blogsync/pull/87 - refactoring around config loading by @Songmu in https://github.com/x-motemen/blogsync/pull/89 diff --git a/action.yml b/action.yml index 00f890f..1cf343a 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.15.0" + default: "v0.16.0" required: false runs: using: 'composite' diff --git a/version.go b/version.go index 9291ebe..d834929 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.15.0" +const version = "0.16.0" var revision = "HEAD"