From af8633a99add57ebf5f9c3446e1f7ee46b7eec3f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 13 Oct 2023 16:41:19 +0000 Subject: [PATCH 1/2] [tagpr] prepare for the next release --- action.yml | 2 +- version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index e42295c..00f890f 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.14.2" + default: "v0.15.0" required: false runs: using: 'composite' diff --git a/version.go b/version.go index 0d487d9..9291ebe 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.14.2" +const version = "0.15.0" var revision = "HEAD" From ed479c8a3eef14230fac65bfcf79260954309367 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 13 Oct 2023 16:41:20 +0000 Subject: [PATCH 2/2] [tagpr] update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c466adc..bf5be84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [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 +- expand tilde in LocalPath with home directory by @Songmu in https://github.com/x-motemen/blogsync/pull/90 + ## [v0.14.2](https://github.com/x-motemen/blogsync/compare/v0.14.1...v0.14.2) - 2023-10-09 - [bugfix] ignore errors in the case of fetching fixed pages by @Songmu in https://github.com/x-motemen/blogsync/pull/85