autorel 0.0.32 → 1.0.0

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 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -176,8 +176,8 @@ A command to run after the release is complete. The following environment variab
176
176
 
177
177
  | Variable | Description |
178
178
  | --- | --- |
179
- | `NEXT_VERSION` | The next version number (without the `v`) |
180
- | `NEXT_TAG` | The next tag |
179
+ | `NEXT_VERSION` | The new version number (without the `v`) |
180
+ | `NEXT_TAG` | The new tag, ie. v3.1.0 |
181
181
 
182
182
  - CLI: `--run`
183
183
  - Argument: `run: string`
@@ -185,7 +185,7 @@ A command to run after the release is complete. The following environment variab
185
185
 
186
186
  ## runScript (YAML only)
187
187
 
188
- A bash script to run after the release is complete. Environment variables are available as above.
188
+ A bash script to run after the release is complete. The same environment variables are available as above.
189
189
 
190
190
  > ❗️ This requires `bash` to be installed on the system.
191
191
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autorel",
3
- "version": "0.0.32",
3
+ "version": "1.0.0",
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)",