Skip to content

Commit afdcb94

Browse files
committed
Releasing support for branches with slashes in 4.1.0.
1 parent 6745040 commit afdcb94

File tree

6 files changed

+377
-878
lines changed

6 files changed

+377
-878
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
# Sequence of patterns matched against refs/tags
55
tags:
6-
- 'v*' # Push events to matching v*, i.e. v1.0, v4.0.1
6+
- 'v*' # Push events to matching v*, i.e. v1.0, v4.1.0
77

88
jobs:
99
release:
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v3
1515
- name: Generate changelog
1616
id: changelog
17-
uses: metcalfc/changelog-generator@v4.0.1
17+
uses: metcalfc/changelog-generator@v4.1.0
1818
with:
1919
myToken: ${{ secrets.GITHUB_TOKEN }}
2020
- name: Create Release

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This Action returns a markdown formatted changelog between two git references. T
66

77
I just wanted a simple way to populate the body of a GitHub Release.
88

9-
<a href="https://github.com/metcalfc/changelog-generator/releases/tag/v4.0.1"><img alt="Example Release Notes" src="./release-notes.png" width="400"></a>
9+
<a href="https://github.com/metcalfc/changelog-generator/releases/tag/v4.1.0"><img alt="Example Release Notes" src="./release-notes.png" width="400"></a>
1010

1111
## Inputs
1212

@@ -49,7 +49,7 @@ First you will need to generate the changelog itself. To get the changelog betwe
4949
```yaml
5050
- name: Generate changelog
5151
id: changelog
52-
uses: metcalfc/changelog-generator@v4.0.1
52+
uses: metcalfc/changelog-generator@v4.1.0
5353
with:
5454
myToken: ${{ secrets.GITHUB_TOKEN }}
5555
```
@@ -59,7 +59,7 @@ Or, if you have two specific references you want:
5959
```yaml
6060
- name: Generate changelog
6161
id: changelog
62-
uses: metcalfc/changelog-generator@v4.0.1
62+
uses: metcalfc/changelog-generator@v4.1.0
6363
with:
6464
myToken: ${{ secrets.GITHUB_TOKEN }}
6565
head-ref: 'v0.0.2'
@@ -77,11 +77,11 @@ If you want to point to a branch containing forward slashes (https://github.com/
7777

7878
- name: Generate changelog
7979
id: changelog
80-
uses: metcalfc/changelog-generator@v4.0.1 #TODO: bump this after release
80+
uses: metcalfc/changelog-generator@v4.1.0 #TODO: bump this after release
8181
with:
8282
myToken: ${{ secrets.GITHUB_TOKEN }}
8383
head-ref: 'origin/my/branch/with/slashes' #add 'origin/` in front of your branch name
84-
base-ref: 'v1.0.0'
84+
base-ref: 'v4.1.0'
8585
fetch: false
8686
```
8787

SECURITY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7-
| v4.0.1 | :white_check_mark: |
8-
| < v4.0.1 | :x: |
7+
| v4.1.0 | :white_check_mark: |
8+
| < v4.1.0 | :x: |
99

1010
## Reporting a Vulnerability
1111

0 commit comments

Comments
 (0)