diff --git a/CHANGELOG.md b/CHANGELOG.md index 108d9a6..a5dfa04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## [v0.16.1](https://github.com/x-motemen/blogsync/compare/v0.16.0...v0.16.1) - 2023-10-14 +- 記事更新時に更新元ファイルのentryHeaderのURLが未設定の場合も更新ができるように修正 by @halkt in https://github.com/x-motemen/blogsync/pull/99 + ## [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 diff --git a/action.yml b/action.yml index 1cf343a..184e813 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.16.0" + default: "v0.16.1" required: false runs: using: 'composite' diff --git a/version.go b/version.go index d834929..18935f9 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.16.0" +const version = "0.16.1" var revision = "HEAD"