Add PR and contributor credits to CHANGELOG

This commit is contained in:
Mario Zechner 2025-11-20 13:41:19 +01:00
parent a1215fc32c
commit 9555b75674
9 changed files with 30 additions and 30 deletions

28
package-lock.json generated
View file

@ -3195,11 +3195,11 @@
},
"packages/agent": {
"name": "@mariozechner/pi-agent",
"version": "0.7.24",
"version": "0.7.25",
"license": "MIT",
"dependencies": {
"@mariozechner/pi-ai": "^0.7.23",
"@mariozechner/pi-tui": "^0.7.23"
"@mariozechner/pi-ai": "^0.7.24",
"@mariozechner/pi-tui": "^0.7.24"
},
"devDependencies": {
"@types/node": "^24.3.0",
@ -3225,7 +3225,7 @@
},
"packages/ai": {
"name": "@mariozechner/pi-ai",
"version": "0.7.24",
"version": "0.7.25",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.61.0",
@ -3272,11 +3272,11 @@
},
"packages/coding-agent": {
"name": "@mariozechner/pi-coding-agent",
"version": "0.7.24",
"version": "0.7.25",
"license": "MIT",
"dependencies": {
"@mariozechner/pi-agent": "^0.7.23",
"@mariozechner/pi-ai": "^0.7.23",
"@mariozechner/pi-agent": "^0.7.24",
"@mariozechner/pi-ai": "^0.7.24",
"chalk": "^5.5.0",
"diff": "^8.0.2",
"glob": "^11.0.3"
@ -3319,10 +3319,10 @@
},
"packages/pods": {
"name": "@mariozechner/pi",
"version": "0.7.24",
"version": "0.7.25",
"license": "MIT",
"dependencies": {
"@mariozechner/pi-agent": "^0.7.23",
"@mariozechner/pi-agent": "^0.7.24",
"chalk": "^5.5.0"
},
"bin": {
@ -3345,7 +3345,7 @@
},
"packages/proxy": {
"name": "@mariozechner/pi-proxy",
"version": "0.7.24",
"version": "0.7.25",
"dependencies": {
"@hono/node-server": "^1.14.0",
"hono": "^4.6.16"
@ -3361,7 +3361,7 @@
},
"packages/tui": {
"name": "@mariozechner/pi-tui",
"version": "0.7.24",
"version": "0.7.25",
"license": "MIT",
"dependencies": {
"@types/mime-types": "^2.1.4",
@ -3400,12 +3400,12 @@
},
"packages/web-ui": {
"name": "@mariozechner/pi-web-ui",
"version": "0.7.24",
"version": "0.7.25",
"license": "MIT",
"dependencies": {
"@lmstudio/sdk": "^1.5.0",
"@mariozechner/pi-ai": "^0.7.23",
"@mariozechner/pi-tui": "^0.7.23",
"@mariozechner/pi-ai": "^0.7.24",
"@mariozechner/pi-tui": "^0.7.24",
"docx-preview": "^0.3.7",
"jszip": "^3.10.1",
"lucide": "^0.544.0",

View file

@ -1,6 +1,6 @@
{
"name": "@mariozechner/pi-agent",
"version": "0.7.24",
"version": "0.7.25",
"description": "General-purpose agent with transport abstraction, state management, and attachment support",
"type": "module",
"main": "./dist/index.js",
@ -18,8 +18,8 @@
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@mariozechner/pi-ai": "^0.7.24",
"@mariozechner/pi-tui": "^0.7.24"
"@mariozechner/pi-ai": "^0.7.25",
"@mariozechner/pi-tui": "^0.7.25"
},
"keywords": [
"ai",

View file

@ -1,6 +1,6 @@
{
"name": "@mariozechner/pi-ai",
"version": "0.7.24",
"version": "0.7.25",
"description": "Unified LLM API with automatic model discovery and provider configuration",
"type": "module",
"main": "./dist/index.js",

View file

@ -4,13 +4,13 @@
### Added
- **Model Cycling**: Press `Ctrl+P` to quickly cycle through models. Use `--models` CLI argument to scope to specific models (e.g., `--models claude-sonnet,gpt-4o`). Supports pattern matching and smart version selection (prefers aliases over dated versions).
- **Model Cycling**: Press `Ctrl+P` to quickly cycle through models. Use `--models` CLI argument to scope to specific models (e.g., `--models claude-sonnet,gpt-4o`). Supports pattern matching and smart version selection (prefers aliases over dated versions). ([#37](https://github.com/badlogic/pi-mono/pull/37) by [@fightbulc](https://github.com/fightbulc))
## [0.7.24] - 2025-11-20
### Added
- **Thinking Level Cycling**: Press `Shift+Tab` to cycle through thinking levels (off → minimal → low → medium → high) for reasoning-capable models. Editor border color changes to indicate current level (gray → blue → cyan → magenta).
- **Thinking Level Cycling**: Press `Shift+Tab` to cycle through thinking levels (off → minimal → low → medium → high) for reasoning-capable models. Editor border color changes to indicate current level (gray → blue → cyan → magenta). ([#36](https://github.com/badlogic/pi-mono/pull/36) by [@fightbulc](https://github.com/fightbulc))
## [0.7.23] - 2025-11-20

View file

@ -1,6 +1,6 @@
{
"name": "@mariozechner/pi-coding-agent",
"version": "0.7.24",
"version": "0.7.25",
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
"type": "module",
"bin": {
@ -21,8 +21,8 @@
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@mariozechner/pi-agent": "^0.7.24",
"@mariozechner/pi-ai": "^0.7.24",
"@mariozechner/pi-agent": "^0.7.25",
"@mariozechner/pi-ai": "^0.7.25",
"chalk": "^5.5.0",
"diff": "^8.0.2",
"glob": "^11.0.3"

View file

@ -1,6 +1,6 @@
{
"name": "@mariozechner/pi",
"version": "0.7.24",
"version": "0.7.25",
"description": "CLI tool for managing vLLM deployments on GPU pods",
"type": "module",
"bin": {
@ -34,7 +34,7 @@
"node": ">=20.0.0"
},
"dependencies": {
"@mariozechner/pi-agent": "^0.7.24",
"@mariozechner/pi-agent": "^0.7.25",
"chalk": "^5.5.0"
},
"devDependencies": {}

View file

@ -1,6 +1,6 @@
{
"name": "@mariozechner/pi-proxy",
"version": "0.7.24",
"version": "0.7.25",
"type": "module",
"description": "CORS and authentication proxy for pi-ai",
"main": "dist/index.js",

View file

@ -1,6 +1,6 @@
{
"name": "@mariozechner/pi-tui",
"version": "0.7.24",
"version": "0.7.25",
"description": "Terminal User Interface library with differential rendering for efficient text-based applications",
"type": "module",
"main": "dist/index.js",

View file

@ -1,6 +1,6 @@
{
"name": "@mariozechner/pi-web-ui",
"version": "0.7.24",
"version": "0.7.25",
"description": "Reusable web UI components for AI chat interfaces powered by @mariozechner/pi-ai",
"type": "module",
"main": "dist/index.js",
@ -18,8 +18,8 @@
},
"dependencies": {
"@lmstudio/sdk": "^1.5.0",
"@mariozechner/pi-ai": "^0.7.24",
"@mariozechner/pi-tui": "^0.7.24",
"@mariozechner/pi-ai": "^0.7.25",
"@mariozechner/pi-tui": "^0.7.25",
"docx-preview": "^0.3.7",
"jszip": "^3.10.1",
"lucide": "^0.544.0",