From 3046a40ea2042b784c84d516cbb8c47f226efa64 Mon Sep 17 00:00:00 2001 From: Chad Metcalf Date: Mon, 31 Aug 2020 16:48:08 -0700 Subject: [PATCH] Upgrade to 0.4.3 to fix the no changes case. --- .github/workflows/release.yml | 4 ++-- README.md | 6 +++--- SECURITY.md | 4 ++-- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fbf4b01..e418b04 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ on: push: # Sequence of patterns matched against refs/tags tags: - - 'v*' # Push events to matching v*, i.e. v1.0, v0.4.2 + - 'v*' # Push events to matching v*, i.e. v1.0, v0.4.3 jobs: release: @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v2 - name: Generate changelog id: changelog - uses: metcalfc/changelog-generator@v0.4.2 + uses: metcalfc/changelog-generator@v0.4.3 with: myToken: ${{ secrets.GITHUB_TOKEN }} - name: Create Release diff --git a/README.md b/README.md index f7c31d1..e6bd1d3 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This Action returns a markdown formatted changelog between two git references. T I just wanted a simple way to populate the body of a GitHub Release. -Example Release Notes +Example Release Notes ## Inputs @@ -34,7 +34,7 @@ There are two blocks you will need. First you will need to generate the changelo - name: Generate changelog id: changelog - uses: metcalfc/changelog-generator@v0.4.2 + uses: metcalfc/changelog-generator@v0.4.3 with: myToken: ${{ secrets.GITHUB_TOKEN }} @@ -42,7 +42,7 @@ Or if you have two specific references you want: - name: Generate changelog id: changelog - uses: metcalfc/changelog-generator@v0.4.2 + uses: metcalfc/changelog-generator@v0.4.3 with: myToken: ${{ secrets.GITHUB_TOKEN }} head-ref: 'v0.0.2' diff --git a/SECURITY.md b/SECURITY.md index 67374a5..565ed04 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------- | ------------------ | -| v0.4.2 | :white_check_mark: | -| > v0.4.2 | :x: | +| v0.4.3 | :white_check_mark: | +| > v0.4.3 | :x: | ## Reporting a Vulnerability diff --git a/package-lock.json b/package-lock.json index 323a1f0..a5a03f2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "changelog-generator", - "version": "0.4.2", + "version": "0.4.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index fa8000f..f440bef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "changelog-generator", - "version": "0.4.2", + "version": "0.4.3", "description": "A GitHub Action that compares the commit differences between two branches", "main": "dist/index.js", "scripts": {