changelog-tool
Advanced tools
Comparing version 0.4.1 to 0.5.0
Changelog | ||
========= | ||
0.5.0 (2023-02-12) | ||
------------------ | ||
* Support changing the version to the next major/minor using the `--major` and | ||
`--minor` arguments. | ||
* The `add` command now uses the -m argument instead of a positional for the | ||
message. | ||
* bla | ||
* bla | ||
0.4.1 (2023-02-12) | ||
@@ -5,0 +16,0 @@ ------------------ |
{ | ||
"name": "changelog-tool", | ||
"version": "0.4.1", | ||
"version": "0.5.0", | ||
"description": "A CLI tool for manipulating changelogs", | ||
@@ -5,0 +5,0 @@ "main": "index.mjs", |
@@ -39,11 +39,31 @@ Changelog tool | ||
``` | ||
npx changelog init - Create a new, empty npx changelog. | ||
npx changelog add [message] - Adds a new line to the npx changelog. | ||
npx changelog release - Marks the current npx changelog as released. | ||
npx changelog show - Show the last npx changelog. | ||
npx changelog show [version] - Show the npx changelog of a specific version. | ||
npx changelog list - List all versions in the npx changelog. | ||
npx changelog format - Reformats the npx changelog in the standard format. | ||
npx changelog init - Create a new, empty npx changelog. | ||
npx changelog add -m [message] - Adds a new line to the npx changelog. | ||
npx changelog release - Marks the current npx changelog as released. | ||
npx changelog show - Show the last npx changelog. | ||
npx changelog show [version] - Show the npx changelog of a specific version. | ||
npx changelog list - List all versions in the npx changelog. | ||
npx changelog format - Reformats the npx changelog in the standard format. | ||
``` | ||
Feature requests and bug reports are welcome. | ||
### Invoking add | ||
Easiest is to just run: | ||
``` | ||
npx changelog add -m "Bug fix" | ||
``` | ||
This will automatically add a line to the latest unreleased version. If there | ||
is no unreleased version, it will create a new patch version. | ||
If the change should cause a minor or major version bump, you can specify the | ||
these options too: | ||
``` | ||
npx changelog add --minor -m "New feature" | ||
npx changelog add --major -m "Backwards compatibility break" | ||
``` | ||
These settings will automatically adjust the version string of the most recent | ||
unreleased version. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20148
569
69