From 43399bd7c9438b3599fd46248474e609d0ccd39b Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Wed, 1 Jan 2025 15:09:28 +0900 Subject: [PATCH] Add release dates to CHANGELOG.md How to verify: ```sh-session $ grep '^##' CHANGELOG.md ## 0.2.1 - 2025-01-01 ## 0.2.0 - 2025-01-01 ## 0.1.2 - 2023-11-01 ## 0.1.1 - 2023-08-10 ## 0.1.0 - 2023-08-10 ## 0.0.7 - 2023-07-28 ## 0.0.6 - 2023-07-28 ## 0.0.5 - 2023-07-28 ## 0.0.4 - 2023-07-27 ## 0.0.3 - 2023-07-27 ## 0.0.2 - 2023-07-27 ## 0.0.1 - 2023-07-27 ``` ```sh-session $ gh release list --json tagName,publishedAt --template '{{range .}}{{tablerow .tagName .publishedAt}}{{end}}' 0.2.1 2025-01-01T05:48:32Z 0.2.0 2025-01-01T05:45:46Z 0.1.2 2023-11-01T00:00:19Z 0.1.1 2023-08-10T13:13:18Z 0.1.0 2023-08-10T13:07:50Z 0.0.7 2023-07-28T15:10:06Z 0.0.6 2023-07-28T14:58:34Z 0.0.5 2023-07-28T14:53:23Z 0.0.4 2023-07-27T17:28:47Z 0.0.3 2023-07-27T17:05:15Z 0.0.2 2023-07-27T16:52:43Z 0.0.1 2023-07-27T16:39:33Z ``` --- CHANGELOG.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f51bce5..0090434 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,49 +4,49 @@ - No actual changes. -## 0.2.0 +## 0.2.0 - 2025-01-01 - Added: support for version number heading including other words like a date than a version ([#54][]) ([@jondricek][]). - Added: support for reference-style links ([#57][]) ([@ybiquitous][]). - Fixed: bump `@actions/core` to `1.11.1`. -## 0.1.2 +## 0.1.2 - 2023-11-01 - Fixed: bump `@actions/github` to `6.0.0`. -## 0.1.1 +## 0.1.1 - 2023-08-10 - No actual changes. -## 0.1.0 +## 0.1.0 - 2023-08-10 - Added: a default value for the `tag` input. -## 0.0.7 +## 0.0.7 - 2023-07-28 - Fixed: make an empty change for testing the release workflow. -## 0.0.6 +## 0.0.6 - 2023-07-28 - Fixed: make an empty change for testing the release workflow. -## 0.0.5 +## 0.0.5 - 2023-07-28 - Fixed: transfer this repository to the Stylelint organization. -## 0.0.4 +## 0.0.4 - 2023-07-27 - Fixed: `@ts-expect-error` comments ([#5][]) ([@ybiquitous][]). -## 0.0.3 +## 0.0.3 - 2023-07-27 - Fixed: missing a result message when a release is created. -## 0.0.2 +## 0.0.2 - 2023-07-27 - Fixed: missing `dist/` files. -## 0.0.1 +## 0.0.1 - 2023-07-27 Initial release.