autorel 0.0.26 → 0.0.28
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 +18 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](https://conventionalcommits.org)
|
|
11
11
|
[]()
|
|
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
|
|
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.
|
|
14
14
|
|
|
15
15
|
Autorel automatically does the following, if appropriate:
|
|
16
16
|
|
|
@@ -32,6 +32,15 @@ Autorel automatically does the following, if appropriate:
|
|
|
32
32
|
- If using CLI, supports both `yaml` configuration and arguments
|
|
33
33
|
- Highly customizable without being overly complex
|
|
34
34
|
|
|
35
|
+
# Table of Contents
|
|
36
|
+
|
|
37
|
+
- [Example Usage (CLI)](#example-usage-cli)
|
|
38
|
+
- [Example Usage (Library)](#example-usage-library)
|
|
39
|
+
- [Configuration](#configuration)
|
|
40
|
+
- [Sample YAML Configuration](#sample-yaml-configuration)
|
|
41
|
+
- [Types](#types)
|
|
42
|
+
- [Support, Feedback, and Contributions](#support-feedback-and-contributions)
|
|
43
|
+
|
|
35
44
|
# Example Usage (CLI)
|
|
36
45
|
|
|
37
46
|
```bash
|
|
@@ -215,10 +224,16 @@ You can find the types defined at [src/index.ts](src/index.ts).
|
|
|
215
224
|
# Support, Feedback, and Contributions
|
|
216
225
|
|
|
217
226
|
- Star this repo if you like it!
|
|
218
|
-
- Submit an [issue](https://github.com/mhweiner/
|
|
227
|
+
- Submit an [issue](https://github.com/mhweiner/autorel/issues) with your problem, feature request or bug report
|
|
219
228
|
- Issue a PR against `main` and request review. Make sure all tests pass and coverage is good.
|
|
220
229
|
- Write about `autorel` in your blog, tweet about it, or share it with your friends!
|
|
221
230
|
|
|
231
|
+
## License
|
|
232
|
+
|
|
233
|
+
MIT © Marc H. Weiner
|
|
234
|
+
|
|
235
|
+
[See full license](LICENSE)
|
|
236
|
+
|
|
222
237
|
## Sponsors
|
|
223
238
|
|
|
224
239
|
<picture>
|
|
@@ -227,4 +242,4 @@ You can find the types defined at [src/index.ts](src/index.ts).
|
|
|
227
242
|
<img src="docs/aeroview-logo-lockup-dark.svg" alt="Logo" style="max-width: 150px;margin: 0 0 10px">
|
|
228
243
|
</picture>
|
|
229
244
|
|
|
230
|
-
Aeroview is a developer-friendly, AI-powered observability platform that helps you monitor, troubleshoot, and optimize your applications. Get started for free at [https://aeroview.io](https://aeroview.io).
|
|
245
|
+
Aeroview is a developer-friendly, AI-powered observability platform that helps you monitor, troubleshoot, and optimize your applications. Get started for free at [https://aeroview.io](https://aeroview.io).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autorel",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.28",
|
|
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)",
|