From ed48b2a547ccf23071aa477752325fad129a681f Mon Sep 17 00:00:00 2001 From: Harald Nezbeda Date: Wed, 26 Aug 2026 18:32:34 +0000 Subject: [PATCH] chore: bump version to 0.21.0 --- pyproject.toml | 2 +- src/vibepod/__init__.py | 2 +- src/vibepod/constants.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 811a43c..f05a6f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/vibepod/__init__.py b/src/vibepod/__init__.py index 1927628..67af507 100644 --- a/src/vibepod/__init__.py +++ b/src/vibepod/__init__.py @@ -1,3 +1,3 @@ """VibePod package.""" -__version__ = "0.20.1" +__version__ = "0.21.0" diff --git a/src/vibepod/constants.py b/src/vibepod/constants.py index 27642f4..792655d 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.20.1" +VERSION = "0.21.0" CONFIG_DIR = Path(user_config_dir(APP_NAME)) GLOBAL_CONFIG_FILE = CONFIG_DIR / "config.yaml"