autorel 2.1.8 → 2.1.10
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/LICENSE +21 -0
- package/README.md +8 -1
- package/package.json +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Marc H. Weiner
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
[](https://github.com/mhweiner/autorel/actions)
|
|
8
8
|
[](https://semver.org)
|
|
9
9
|
[](https://conventionalcommits.org)
|
|
10
|
-
[](https://opensource.org/licenses/MIT)
|
|
11
|
+
[](https://github.com/mhweiner/autorel)
|
|
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 simpler and faster.
|
|
13
14
|
|
|
@@ -49,6 +50,7 @@ _Currently only has built-in support for `GitHub` and `NPM`, but you can write y
|
|
|
49
50
|
- [About package.json versions](#about-packagejson-versions)
|
|
50
51
|
- [FAQ](docs/faq.md)
|
|
51
52
|
- [Support, Feedback, and Contributions](#support-feedback-and-contributions)
|
|
53
|
+
- [License](#license)
|
|
52
54
|
|
|
53
55
|
# Example Usage (CLI)
|
|
54
56
|
|
|
@@ -329,6 +331,11 @@ If using our npm publishing feature, the package.json file's version will be upd
|
|
|
329
331
|
- Submit an [issue](https://github.com/mhweiner/autorel/issues) with your problem, feature request or bug report
|
|
330
332
|
- Issue a PR against `main` and request review. Make sure all tests pass and coverage is good.
|
|
331
333
|
- Write about `autorel` in your blog, tweet about it, or share it with your friends!
|
|
334
|
+
- Support this package by adding our badge to your README:
|
|
335
|
+
|
|
336
|
+
```markdown
|
|
337
|
+
[](https://github.com/mhweiner/autorel)
|
|
338
|
+
```
|
|
332
339
|
|
|
333
340
|
## License
|
|
334
341
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autorel",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.10",
|
|
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)",
|