autorel 2.2.9 → 2.2.11

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 +27 -15
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,10 @@
1
1
  <picture>
2
- <source srcset="docs/autorel.svg" media="(prefers-color-scheme: dark)">
3
- <source srcset="docs/autorel-dark.svg" media="(prefers-color-scheme: light)">
4
- <img src="docs/autorel-dark.svg" alt="Autorel" size="250">
5
- </picture>
2
+ <source srcset="docs/autorel-white.svg" media="(prefers-color-scheme: dark)">
3
+ <source srcset="docs/autorel-black.svg" media="(prefers-color-scheme: light)">
4
+ <img src="docs/autorel-black.svg" alt="Autorel" size="250">
5
+ </picture>
6
+
7
+ ---
6
8
 
7
9
  [![build status](https://github.com/mhweiner/autorel/actions/workflows/release.yml/badge.svg)](https://github.com/mhweiner/autorel/actions)
8
10
  [![SemVer](https://img.shields.io/badge/SemVer-2.0.0-blue)](https://semver.org)
@@ -360,24 +362,34 @@ If using our npm publishing feature, the package.json file's version will be upd
360
362
 
361
363
  If you need access to the new version number in your CI/CD pipeline, you can use the `NEXT_VERSION` or `NEXT_TAG` environment variables.
362
364
 
363
- # Support & Feedback
365
+ # Support, feedback, and contributions
364
366
 
365
367
  - Star this repo if you like it!
366
368
  - Submit an [issue](https://github.com/mhweiner/autorel/issues) with your problem, feature request or bug report
367
- - Write about `autorel` in your blog, tweet about it, or share it with your friends!
368
- - Support this package by adding our badge to your README:
369
+ - Issue a PR against `main` and request review. Make sure all tests pass and coverage is good.
370
+ - Write about this project in your blog, tweet about it, or share it with your friends!
369
371
 
370
- ```markdown
371
- [![Static Badge](https://img.shields.io/badge/v2-autorel?label=autorel&labelColor=0ab5fc&color=grey&link=https%3A%2F%2Fgithub.com%2Fmhweiner%2Fautorel)](https://github.com/mhweiner/autorel)
372
- ```
372
+ # Sponsorship
373
+ <br>
374
+ <picture>
375
+ <source srcset="docs/aeroview-white.svg" media="(prefers-color-scheme: dark)">
376
+ <source srcset="docs/aeroview-black.svg" media="(prefers-color-scheme: light)">
377
+ <img src="docs/aeroview-black.svg" alt="Logo" height="20">
378
+ </picture>
379
+ <br>
373
380
 
374
- # Contributors & Maintainers Wanted!
381
+ Aeroview is a lightning-fast, developer-friendly, and AI-powered logging IDE. Get started for free at [https://aeroview.io](https://aeroview.io).
375
382
 
376
- We are looking for contributors and maintainers to help with the project. If you are interested, please open an issue or PR. Together we can help bring automated releases to everyone!
383
+ Want to sponsor this project? [Reach out](mailto:mhweiner234@gmail.com?subject=I%20want%20to%20sponsor%20autorel).
377
384
 
378
- ## License
385
+ # Other useful libraries
379
386
 
380
- MIT &copy; Marc H. Weiner
387
+ - [brek](https://github.com/mhweiner/brek): powerful yet simple configuration library for Node.js. It’s structured, typed, and designed for dynamic configuration loading, making it perfect for securely managing secrets (e.g., AWS Secrets Manager).
388
+ - [hoare](https://github.com/mhweiner/hoare): An easy-to-use, fast, and defensive JS/TS test runner designed to help you to write simple, readable, and maintainable tests.
389
+ - [jsout](https://github.com/mhweiner/jsout): A Syslog-compatible, small, and simple logger for Typescript/Javascript projects.
390
+ - [cjs-mock](https://github.com/mhweiner/cjs-mock): NodeJS module mocking for CJS (CommonJS) modules for unit testing purposes.
391
+ - [typura](https://github.com/aeroview/typura): Simple and extensible runtime input validation for TS/JS, written in TS.
381
392
 
382
- [See full license](LICENSE)
393
+ # License
383
394
 
395
+ [MIT](LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autorel",
3
- "version": "2.2.9",
3
+ "version": "2.2.11",
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)",