@edcalderon/versioning 1.4.0 → 1.4.1

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 +34 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,41 @@
1
1
  # @edcalderon/versioning
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@edcalderon/versioning?style=flat-square&color=0ea5e9)](https://www.npmjs.com/package/@edcalderon/versioning)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@edcalderon/versioning?style=flat-square&color=10b981)](https://www.npmjs.com/package/@edcalderon/versioning)
5
+ [![GitHub](https://img.shields.io/badge/GitHub-Repository-181717?style=flat-square&logo=github)](https://github.com/edcalderon/my-second-brain/tree/main/packages/versioning)
6
+
3
7
  A comprehensive versioning and changelog management tool designed for monorepos and single repositories. It provides automated version bumping, changelog generation using conventional commits, and version synchronization across multiple packages.
4
8
 
9
+ ---
10
+
11
+ ## 📋 Latest Changes (v1.4.1)
12
+
13
+ **Patch Fixes & Updates:**
14
+ - 🐛 Fix pnpm audit vulnerabilities with override configuration
15
+ - 🔧 Improve error handling in StatusManager
16
+ - 📝 Add comprehensive documentation with badges
17
+ - 🔗 Add direct GitHub repository links in docs
18
+ - 📊 Enhanced status command formatting and error messages
19
+
20
+ **From v1.4.0:**
21
+ - ✨ New `versioning status` (aliased as `info`) command for health reporting
22
+ - 📈 Sync status across all apps and packages with detailed reporting
23
+ - 🎯 Support `--json` and `--dot` (Graphviz) output formats
24
+ - 🔍 Environment health checks (Node.js, pnpm, Git)
25
+ - 🎬 Last release info with suggested next version
26
+
27
+ **Quick Test:**
28
+ ```bash
29
+ npm install -g @edcalderon/versioning@latest
30
+ versioning status
31
+ versioning status --json
32
+ versioning status --dot | dot -Tsvg > deps.svg
33
+ ```
34
+
35
+ For full version history, see [CHANGELOG.md](./CHANGELOG.md) and [GitHub releases](https://github.com/edcalderon/my-second-brain/releases)
36
+
37
+ ---
38
+
5
39
  ## Features
6
40
 
7
41
  - 🚀 Automated version bumping (patch, minor, major, prerelease)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edcalderon/versioning",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "A comprehensive versioning and changelog management tool for monorepos",
5
5
  "main": "dist/index.js",
6
6
  "bin": {