From e5306b306fa2e34f05258789e0e5c526c1bd4352 Mon Sep 17 00:00:00 2001 From: Chad Metcalf Date: Fri, 19 Mar 2021 17:08:45 -0700 Subject: [PATCH] 1.0.0 --- .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 a7f18bf..b6af257 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.4 + - 'v*' # Push events to matching v*, i.e. v1.0, v1.0.0 jobs: release: @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v2 - name: Generate changelog id: changelog - uses: metcalfc/changelog-generator@v0.4.4 + uses: metcalfc/changelog-generator@v1.0.0 with: myToken: ${{ secrets.GITHUB_TOKEN }} - name: Create Release diff --git a/README.md b/README.md index e1a0806..05c3554 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.4 + uses: metcalfc/changelog-generator@v1.0.0 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.4 + uses: metcalfc/changelog-generator@v1.0.0 with: myToken: ${{ secrets.GITHUB_TOKEN }} head-ref: 'v0.0.2' diff --git a/SECURITY.md b/SECURITY.md index fcc1aff..2d1f8ea 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------- | ------------------ | -| v0.4.4 | :white_check_mark: | -| > v0.4.4 | :x: | +| v1.0.0 | :white_check_mark: | +| > v1.0.0 | :x: | ## Reporting a Vulnerability diff --git a/package-lock.json b/package-lock.json index 49678c9..54a4e85 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "changelog-generator", - "version": "0.4.4", + "version": "1.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d69ca1f..c3ada65 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "changelog-generator", - "version": "0.4.4", + "version": "1.0.0", "description": "A GitHub Action that compares the commit differences between two branches", "main": "dist/index.js", "scripts": {