Skip to content

Commit b40f6e8

Browse files
committed
chore: Update CHANGELOG.md
1 parent 7f1286b commit b40f6e8

File tree

4 files changed

+9
-18
lines changed

4 files changed

+9
-18
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased] - TBD
8+
## [1.3.1] - 2025-01-01
9+
10+
### Fixed
11+
12+
- Prevent changes with a prefix from being omitted when parsing from existing changelog. ([#60](https://git.justinelmore.dev/jelmore1674/build-changelog/pulls/60), [#59](https://git.justinelmore.dev/jelmore1674/build-changelog/issues/59)) ([Justin Elmore](https://git.justinelmore.dev/jelmore1674))
913

1014
### Security
1115

@@ -257,8 +261,8 @@ _Initial Release_
257261
- inital release of app.
258262
- `breaking` keyword to show breaking changes.
259263

260-
261264
[Unreleased]: https://git.justinelmore.dev/jelmore1674/build-changelog/releases/tag/vUnreleased
265+
[1.3.1]: https://git.justinelmore.dev/jelmore1674/build-changelog/releases/tag/v1.3.1
262266
[1.3.0]: https://git.justinelmore.dev/jelmore1674/build-changelog/releases/tag/v1.3.0
263267
[1.2.0]: https://git.justinelmore.dev/jelmore1674/build-changelog/releases/tag/v1.2.0
264268
[1.1.0]: https://git.justinelmore.dev/jelmore1674/build-changelog/releases/tag/v1.1.0
@@ -284,4 +288,4 @@ _Initial Release_
284288
[0.1.0]: https://git.justinelmore.dev/jelmore1674/build-changelog/releases/tag/v0.1.0
285289
[0.0.7]: https://git.justinelmore.dev/jelmore1674/build-changelog/releases/tag/v0.0.7
286290
[0.0.6]: https://git.justinelmore.dev/jelmore1674/build-changelog/releases/tag/v0.0.6
287-
[0.0.5]: https://git.justinelmore.dev/jelmore1674/build-changelog/releases/tag/v0.0.5
291+
[0.0.5]: https://git.justinelmore.dev/jelmore1674/build-changelog/releases/tag/v0.0.5

changelog/fix.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jelmore1674/build-changelog",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "",
55
"main": "dist/index.js",
66
"files": [

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const program = new Command();
1010
program
1111
.name("build-changelog")
1212
.description("cli tool to generate changelogs")
13-
.version("1.3.0");
13+
.version("1.3.1");
1414

1515
program
1616
.command("init")

0 commit comments

Comments
 (0)