From f841c33fa96da687382cab6e8f669bd3910a93a3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 29 Oct 2023 05:34:45 +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 9197191..b10d273 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.1" + default: "v0.18.2" required: false runs: using: 'composite' diff --git a/version.go b/version.go index 9645ff5..1c51125 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.18.1" +const version = "0.18.2" var revision = "HEAD" From 8d51e27f1a091d7e851afda4dcdcd178fbc0c5d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 29 Oct 2023 05:34:45 +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 3ede5f7..4a61dce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [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 +- unshallow if a shallow repository mainly for CI environment by @Songmu in https://github.com/x-motemen/blogsync/pull/124 + ## [v0.18.1](https://github.com/x-motemen/blogsync/compare/v0.18.0...v0.18.1) - 2023-10-28 - suppress git error logs by @Songmu in https://github.com/x-motemen/blogsync/pull/119