autorel 0.0.29 → 0.0.30

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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,22 +10,22 @@
10
10
  [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
11
11
  [![SemVer](https://img.shields.io/badge/SemVer-2.0.0-blue)]()
12
12
 
13
- Automate releases based on [SemVer](https://semver.org/) and [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). Like `semantic-release` and `release-please` but simpler, faster, and more flexible.
13
+ Automate releases based on [SemVer](https://semver.org/) and [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). Like `semantic-release` and `release-please` but simpler and faster.
14
14
 
15
15
  Autorel automatically does the following, if appropriate:
16
16
 
17
17
  - Bumps the version based on the commit messages
18
18
  - Creates a new release on GitHub with Release Notes
19
19
  - Publishes the release to NPM
20
- - Any other custom release steps you want to add
20
+ - Runs any arbitrary command or bash script after the release is complete
21
21
 
22
22
  **✅ Conventional Commit and SemVer Compliant**
23
- - Unlike some other tools, `autorel` is 100% compliant with Conventional Commits and SemVer out of the box, including "!" for breaking changes
23
+ -`autorel` is 100% compliant with Conventional Commits and SemVer out of the box, including "!" for breaking changes
24
24
 
25
25
  **😃 Simple & Easy to Use**
26
26
  - No confusing configuration files or complex setup
27
27
  - Works with any CI/CD system, including GitHub Actions
28
- - Out of the box TypeScript support
28
+ - Built-in TypeScript and bash script support
29
29
 
30
30
  **💪 Flexible & Powerful**
31
31
  - Use via `npx`, or import as a library
@@ -77,7 +77,7 @@ autorel --publish
77
77
 
78
78
  autorel({
79
79
  publish: true
80
- run: 'echo "Hello, World!"'
80
+ run: 'echo "Next version is ${NEXT_VERSION}"'
81
81
  });
82
82
  ```
83
83
  This will do the same as the CLI example above.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autorel",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
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)",