pi-cicd 1.0.1 → 1.0.2

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/CHANGELOG.md +7 -11
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,19 +1,15 @@
1
1
  # Changelog
2
2
 
3
- ## 0.4.1 (2026-05-13)
3
+ ## 1.0.2 (2026-05-13)
4
4
 
5
- ### Added
6
- - Comprehensive documentation
7
- - Improved canary deployment
5
+ ### Fixed
6
+ - Add proper peerDependencies for @earendil-works/pi-coding-agent
7
+ - Add tsconfig.json for TypeScript support
8
8
 
9
- ## 0.4.0 (2026-05-12)
9
+ ## 1.0.1 (2026-05-13)
10
10
 
11
11
  ### Added
12
- - Pipeline Orchestration
13
- - Headless Mode with exit codes
14
- - Canary Deployments
15
- - Landing Queue
16
- - Event Streaming
12
+ - Comprehensive documentation
17
13
 
18
- ## 0.3.0 (Earlier)
14
+ ## 1.0.0 (Earlier)
19
15
  - Initial release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-cicd",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Extension for Pi coding agent",
5
5
  "type": "module",
6
6
  "main": "./index.ts",
@@ -36,6 +36,7 @@
36
36
  "license": "MIT",
37
37
  "repository": "https://github.com/baphuongna/pi-cicd",
38
38
  "peerDependencies": {
39
- "typescript": "^5.0.0"
39
+ "typescript": "^5.0.0",
40
+ "@earendil-works/pi-coding-agent": ">=0.73.0"
40
41
  }
41
42
  }