Skip to content

Commit 37037a7

Browse files
committed
Release v0.2.0
1 parent e62ad19 commit 37037a7

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
## [0.2.0] - 2025-01-23
11+
12+
### Added
13+
14+
- Add npm install instruction
15+
16+
### Changed
17+
18+
- Cleanup dependencies
19+
- Rename CLI to chlog
20+
21+
### Fixed
22+
23+
- Add missing show.js
24+
1025
## [0.1.0] - 2025-01-22
1126

1227
### Added
@@ -19,5 +34,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
1934
- Show all changes in a release
2035
- Merge two or more changelog files
2136

22-
[Unreleased]: https://example.com/compare/v0.1.0...HEAD
37+
[Unreleased]: https://example.com/compare/v0.2.0...HEAD
38+
[0.2.0]: https://example.com/compare/v0.1.0...v0.2.0
2339
[0.1.0]: https://example.com/releases/tag/v0.1.0

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
"parser"
2525
],
2626
"license": "MIT",
27-
"version": "0.1.0"
27+
"version": "0.2.0"
2828
}

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function main() {
3434
program
3535
.name("chlog")
3636
.description("A command-line tool to parse and manipulate changelog files")
37-
.version("0.1.0")
37+
.version("0.2.0")
3838

3939
// Define commands
4040
const changeTypes = Array.from(new Release().changes.keys()).join(", ");

0 commit comments

Comments
 (0)