diff --git a/pyproject.toml b/pyproject.toml index f05a6f1..87a6362 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "vibepod" -version = "0.21.0" +version = "0.22.0" description = "One CLI for containerized AI coding agents" readme = "README.md" requires-python = ">=3.10" diff --git a/src/vibepod/__init__.py b/src/vibepod/__init__.py index 67af507..041e8d7 100644 --- a/src/vibepod/__init__.py +++ b/src/vibepod/__init__.py @@ -1,3 +1,3 @@ """VibePod package.""" -__version__ = "0.21.0" +__version__ = "0.22.0" diff --git a/src/vibepod/constants.py b/src/vibepod/constants.py index 792655d..1ef098b 100644 --- a/src/vibepod/constants.py +++ b/src/vibepod/constants.py @@ -8,7 +8,7 @@ from platformdirs import user_config_dir APP_NAME = "vibepod" -VERSION = "0.21.0" +VERSION = "0.22.0" CONFIG_DIR = Path(user_config_dir(APP_NAME)) GLOBAL_CONFIG_FILE = CONFIG_DIR / "config.yaml"