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 pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "vibepod"
version = "0.20.1"
version = "0.21.0"
description = "One CLI for containerized AI coding agents"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/vibepod/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""VibePod package."""

__version__ = "0.20.1"
__version__ = "0.21.0"
2 changes: 1 addition & 1 deletion src/vibepod/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from platformdirs import user_config_dir

APP_NAME = "vibepod"
VERSION = "0.20.1"
VERSION = "0.21.0"

CONFIG_DIR = Path(user_config_dir(APP_NAME))
GLOBAL_CONFIG_FILE = CONFIG_DIR / "config.yaml"
Expand Down
Loading