diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index a99dcf7..779039a 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, v4.2.0
+ - 'v*' # Push events to matching v*, i.e. v1.0, v4.3.0
jobs:
release:
@@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4
- name: Generate changelog
id: changelog
- uses: metcalfc/changelog-generator@v4.2.0
+ uses: metcalfc/changelog-generator@v4.3.0
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
diff --git a/README.md b/README.md
index ddfdde6..2a45e56 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.
-
+
## Inputs
@@ -47,7 +47,7 @@ First you will need to generate the changelog itself. To get the changelog betwe
```yaml
- name: Generate changelog
id: changelog
- uses: metcalfc/changelog-generator@v4.2.0
+ uses: metcalfc/changelog-generator@v4.3.0
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
```
@@ -57,7 +57,7 @@ Or, if you have two specific references you want:
```yaml
- name: Generate changelog
id: changelog
- uses: metcalfc/changelog-generator@v4.2.0
+ uses: metcalfc/changelog-generator@v4.3.0
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
head-ref: 'v0.0.2'
@@ -75,11 +75,11 @@ If you want to point to a branch containing forward slashes (https://github.com/
- name: Generate changelog
id: changelog
- uses: metcalfc/changelog-generator@v4.2.0 #TODO: bump this after release
+ uses: metcalfc/changelog-generator@v4.3.0 #TODO: bump this after release
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
head-ref: 'origin/my/branch/with/slashes' #add 'origin/` in front of your branch name
- base-ref: 'v4.2.0'
+ base-ref: 'v4.3.0'
fetch: false
```
diff --git a/SECURITY.md b/SECURITY.md
index 80ccf7a..630032e 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -4,8 +4,8 @@
| Version | Supported |
| ------- | ------------------ |
-| v4.2.0 | :white_check_mark: |
-| < v4.2.0 | :x: |
+| v4.3.0 | :white_check_mark: |
+| < v4.3.0 | :x: |
## Reporting a Vulnerability
diff --git a/package-lock.json b/package-lock.json
index dd7bf8e..dfbb9f8 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "changelog-generator",
- "version": "4.2.0",
+ "version": "4.3.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "changelog-generator",
- "version": "4.2.0",
+ "version": "4.3.0",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
diff --git a/package.json b/package.json
index 74f14cf..fae1f6c 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "changelog-generator",
- "version": "4.2.0",
+ "version": "4.3.0",
"description": "A GitHub Action that compares the commit differences between two branches",
"main": "dist/index.js",
"scripts": {