autorel 2.1.12 → 2.1.14
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/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ _Currently only has built-in support for `GitHub` and `NPM`, but you can write y
|
|
|
39
39
|
|
|
40
40
|
- [Example Usage (CLI)](#example-usage-cli)
|
|
41
41
|
- [Example Usage (Library)](#example-usage-library)
|
|
42
|
-
- [
|
|
42
|
+
- [Commit Messages](#commit-messages)
|
|
43
43
|
- [Usage with GitHub Actions](#usage-with-github-actions)
|
|
44
44
|
- [Usage with Other Repositories (not GitHub)](#usage-with-other-repositories-not-github)
|
|
45
45
|
- [Usage with Other Languages (not Node.js)](#usage-with-other-languages-not-nodejs)
|
|
@@ -96,9 +96,9 @@ You may want to add the version number to the npx command to prevent breaking ch
|
|
|
96
96
|
|
|
97
97
|
# Commit Messages
|
|
98
98
|
|
|
99
|
-
Commit messages are parsed to determine the version bump. They must follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification
|
|
99
|
+
Commit messages are parsed to determine the version bump. They must follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) standard specification.
|
|
100
100
|
|
|
101
|
-
Here are some examples of commit messages and the resulting version bump (default configuration):
|
|
101
|
+
Here are some examples of commit messages and the resulting [SemVer](https://semver.org) version bump (with default configuration):
|
|
102
102
|
|
|
103
103
|
- `fix: fix a bug` -> `0.0.1`
|
|
104
104
|
- `feat: add new feature` -> `0.1.0`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autorel",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.14",
|
|
4
4
|
"description": "Automate semantic releases based on conventional commits. Similar to semantic-release but much simpler.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Marc H. Weiner <mhweiner234@gmail.com> (https://mhweiner.com)",
|