Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/cli-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "planforge",
"version": "0.1.7",
"version": "0.1.8",
"type": "module",
"description": "PlanForge CLI - Bring your own AI to Cursor",
"keywords": ["cursor", "claude", "codex", "ai", "cli", "planning", "planforge"],
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-js/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const program = new Command();
program
.name("planforge")
.description("Bring your own AI to Cursor. Use Claude or Codex inside Cursor Free.")
.version("0.1.7");
.version("0.1.8");

program
.command("init")
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-py/planforge/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""PlanForge CLI - Bring your own AI to Cursor."""

__version__ = "0.1.7"
__version__ = "0.1.8"
2 changes: 1 addition & 1 deletion packages/cli-py/planforge/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


@click.group()
@click.version_option(version="0.1.7")
@click.version_option(version="0.1.8")
def main() -> None:
"""Bring your own AI to Cursor. Use Claude or Codex inside Cursor Free."""

Expand Down
2 changes: 1 addition & 1 deletion packages/cli-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "planforge"
version = "0.1.7"
version = "0.1.8"
description = "PlanForge CLI - Bring your own AI to Cursor"
requires-python = ">=3.10"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@planforge/core",
"version": "0.1.7",
"version": "0.1.8",
"description": "PlanForge shared prompts",
"license": "MIT",
"files": ["prompts", "models.json"]
Expand Down
2 changes: 1 addition & 1 deletion packages/core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "planforge-core"
version = "0.1.7"
version = "0.1.8"
description = "PlanForge shared prompts"
requires-python = ">=3.10"

Expand Down
Loading