keep-a-changelog 3.0.1 → 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/)
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/).
6
6
 
7
+ ## [3.0.3] - 2026-05-13
8
+ ### Fixed
9
+ - Node types [#67]
10
+
11
+ ## [3.0.2] - 2026-02-24
12
+ ### Fixed
13
+ - NPX executable [#64]
14
+
7
15
  ## [3.0.1] - 2026-02-21
8
16
  ### Fixed
9
17
  - NPM imports in the Deno version.
@@ -152,7 +160,11 @@ New version merging Deno and Node code using Deno's `dnt` package.
152
160
  [#59]: https://github.com/oscarotero/keep-a-changelog/issues/59
153
161
  [#61]: https://github.com/oscarotero/keep-a-changelog/issues/61
154
162
  [#62]: https://github.com/oscarotero/keep-a-changelog/issues/62
163
+ [#64]: https://github.com/oscarotero/keep-a-changelog/issues/64
164
+ [#67]: https://github.com/oscarotero/keep-a-changelog/issues/67
155
165
 
166
+ [3.0.3]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.2...v3.0.3
167
+ [3.0.2]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.1...v3.0.2
156
168
  [3.0.1]: https://github.com/oscarotero/keep-a-changelog/compare/v3.0.0...v3.0.1
157
169
  [3.0.0]: https://github.com/oscarotero/keep-a-changelog/compare/v2.8.0...v3.0.0
158
170
  [2.8.0]: https://github.com/oscarotero/keep-a-changelog/compare/v2.7.1...v2.8.0
package/bin.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { join } from "node:path";
2
3
  import { parseArgs } from "node:util";
3
4
  import { cwd, exit } from "node:process";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keep-a-changelog",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "description": "Parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.",
5
5
  "type": "module",
6
6
  "repository": {
package/types/bin.d.ts CHANGED
@@ -1 +1,2 @@
1
+ #!/usr/bin/env -S deno run --allow-read --allow-write --allow-env
1
2
  export {};
package/types/mod.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import parser from "./src/parser.d.ts";
2
- import Change from "./src/Change.d.ts";
3
- import Changelog from "./src/Changelog.d.ts";
4
- import Release from "./src/Release.d.ts";
1
+ import type parser from "./src/parser.d.ts";
2
+ import type Change from "./src/Change.d.ts";
3
+ import type Changelog from "./src/Changelog.d.ts";
4
+ import type Release from "./src/Release.d.ts";
5
5
  export { Change, Changelog, parser, Release };
@@ -1,4 +1,4 @@
1
- import Change from "./Change.d.ts";
1
+ import type Change from "./Change.d.ts";
2
2
  import type Changelog from "./Changelog.d.ts";
3
3
  import type { SemVer } from "./deps.d.ts";
4
4
  export default class Release {
@@ -1,4 +1,4 @@
1
- export { default as SemVer } from "npm:semver@7.7.4/classes/semver.js";
2
- export { default as parse } from "npm:semver@7.7.4/functions/parse.js";
3
- export { default as compare } from "npm:semver@7.7.4/functions/compare.js";
4
- export { default as equals } from "npm:semver@7.7.4/functions/eq.js";
1
+ export { default as SemVer } from "semver/classes/semver.js";
2
+ export { default as parse } from "semver/functions/parse.js";
3
+ export { default as compare } from "semver/functions/compare.js";
4
+ export { default as equals } from "semver/functions/eq.js";
@@ -1,5 +1,5 @@
1
- import Changelog from "./Changelog.d.ts";
2
- import Release from "./Release.d.ts";
1
+ import type Changelog from "./Changelog.d.ts";
2
+ import type Release from "./Release.d.ts";
3
3
  export interface Options {
4
4
  /**
5
5
  * Custom function to create Release instances.