autorel 0.0.31 → 0.0.32

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 +3 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,14 +27,9 @@ Autorel automatically does the following, if appropriate:
27
27
  - Works with any CI/CD system, including GitHub Actions
28
28
  - Built-in TypeScript and bash script support
29
29
 
30
- **💪 Flexible & Powerful**
31
- - Use via `npx`, or import as a library
32
- - If using CLI, supports both `yaml` configuration and arguments
33
- - Highly customizable without being overly complex
34
-
35
30
  **🚀 Fast & Lightweight**
36
-
37
31
  - Minimal dependencies and fast execution
32
+ - Less broken builds and more time to focus on your code!
38
33
 
39
34
  # Table of Contents
40
35
 
@@ -61,7 +56,7 @@ This will:
61
56
  3. Publish the release to NPM
62
57
  4. Run the command `echo "Next version is ${NEXT_VERSION}"`
63
58
 
64
- You can also install `autorel` globally and run it that way:
59
+ You can also install `autorel` globally and run it directly:
65
60
 
66
61
  ```bash
67
62
  npm i -g autorel
@@ -145,7 +140,7 @@ You can find more examples in the [Conventional Commits](https://www.conventiona
145
140
 
146
141
  When run in CLI mode, `autorel` can be configured via CLI arguments or a `yaml` file. CLI arguments take precedence over the `yaml` file.
147
142
 
148
- When used as a library, you can pass the configuration directly to the `autorel` function. [See below](#types) for the types of configuration options.
143
+ When used as a library, you can pass the configuration directly to the `autorel` function.
149
144
 
150
145
  All arguments are optional, but setting `branches` is recommended.
151
146
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autorel",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
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)",