@pjmendonca/devflow 1.12.0 → 1.12.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.
- package/CHANGELOG.md +7 -0
- package/README.md +2 -2
- package/package.json +1 -1
- package/tooling/scripts/lib/__init__.py +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.12.1] - 2025-12-25
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Documentation** - Updated installation command to use `@latest` tag
|
|
12
|
+
- Changed `npx @pjmendonca/devflow install` to `npx @pjmendonca/devflow@latest install`
|
|
13
|
+
- Ensures users always get the latest version when installing
|
|
14
|
+
|
|
8
15
|
## [1.12.0] - 2025-12-25
|
|
9
16
|
|
|
10
17
|
### Changed
|
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ Choose the method that best fits your needs:
|
|
|
53
53
|
cd your-project
|
|
54
54
|
|
|
55
55
|
# Install Devflow into your existing project
|
|
56
|
-
npx @pjmendonca/devflow install
|
|
56
|
+
npx @pjmendonca/devflow@latest install
|
|
57
57
|
|
|
58
58
|
# This will:
|
|
59
59
|
# 1. Copy .claude/ and tooling/ directories into your project
|
|
@@ -550,7 +550,7 @@ Free to use in commercial and personal projects.
|
|
|
550
550
|
|
|
551
551
|
|
|
552
552
|
<!-- VERSION_START - Auto-updated by update_version.py -->
|
|
553
|
-
**Version**: 1.12.
|
|
553
|
+
**Version**: 1.12.1
|
|
554
554
|
**Status**: Production Ready
|
|
555
555
|
**Last Updated**: 2025-12-25
|
|
556
556
|
<!-- VERSION_END -->
|
package/package.json
CHANGED