diff --git a/CHANGELOG.md b/CHANGELOG.md index a5dfa04..7d45d77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v0.17.0](https://github.com/x-motemen/blogsync/compare/v0.16.1...v0.17.0) - 2023-10-22 +- Add PreviewURL field by @Mahito in https://github.com/x-motemen/blogsync/pull/104 +- [incompatible] change log output dest to stderr by @Songmu in https://github.com/x-motemen/blogsync/pull/106 +- output updated files to stdout by @Songmu in https://github.com/x-motemen/blogsync/pull/107 +- add "--no-drafts" and "--only-drafts" flags to pull subcommand for drafts management by @Songmu in https://github.com/x-motemen/blogsync/pull/110 + ## [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 diff --git a/action.yml b/action.yml index 184e813..83b7d21 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.1" + default: "v0.17.0" required: false runs: using: 'composite' diff --git a/version.go b/version.go index 18935f9..147da24 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.16.1" +const version = "0.17.0" var revision = "HEAD"