diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a61dce..6c371b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v0.19.0](https://github.com/x-motemen/blogsync/compare/v0.18.2...v0.19.0) - 2023-11-04 +- define func *blogConfig.fetchRootURL by @Songmu in https://github.com/x-motemen/blogsync/pull/125 +- update README.md by @Songmu in https://github.com/x-motemen/blogsync/pull/131 +- add remove subcommand to remove the entry by @Songmu in https://github.com/x-motemen/blogsync/pull/132 +- define func newApp() for internal testability by @Songmu in https://github.com/x-motemen/blogsync/pull/133 +- add --publish option to push subcommand by @Songmu in https://github.com/x-motemen/blogsync/pull/134 +- 下書きエントリーのファイル配置位置の変更 by @Songmu in https://github.com/x-motemen/blogsync/pull/128 + ## [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 diff --git a/action.yml b/action.yml index b10d273..ac64178 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.2" + default: "v0.19.0" required: false runs: using: 'composite' diff --git a/version.go b/version.go index 1c51125..169ce3e 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.18.2" +const version = "0.19.0" var revision = "HEAD"