diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 44ff9a8..b95c53b 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.2.5 + - 'v*' # Push events to matching v*, i.e. v1.0, v0.3.0 jobs: release: @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v2 - name: Generate changelog id: changelog - uses: metcalfc/changelog-generator@v0.2.5 + uses: metcalfc/changelog-generator@v0.3.0 with: myToken: ${{ secrets.GITHUB_TOKEN }} - name: Create Release diff --git a/README.md b/README.md index dea8f1f..9d48fb3 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 @@ -28,7 +28,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.2.5 + uses: metcalfc/changelog-generator@v0.3.0 with: myToken: ${{ secrets.GITHUB_TOKEN }} @@ -36,7 +36,7 @@ Or if you have two specific references you want: - name: Generate changelog id: changelog - uses: metcalfc/changelog-generator@v0.2.5 + uses: metcalfc/changelog-generator@v0.3.0 with: myToken: ${{ secrets.GITHUB_TOKEN }} head-ref: 'v0.0.2' diff --git a/package-lock.json b/package-lock.json index d9d3181..fce79e2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "changelog-generator", - "version": "0.2.5", + "version": "0.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 2f3cb7e..51567b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "changelog-generator", - "version": "0.2.5", + "version": "0.3.0", "description": "A GitHub Action that compares the commit differences between two branches", "main": "dist/index.js", "scripts": {