From ee0084912b6a41e3b6fe0ab2dd9b3202c62914b5 Mon Sep 17 00:00:00 2001 From: Brandon Walker Date: Sat, 24 Jan 2026 17:44:36 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.1=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 2 +- pyproject.toml | 4 ++-- tracking-server/cli.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index a4813b9..cbc94c3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,7 +10,7 @@ project = "Artifacta" copyright = "2025, Artifacta Contributors" author = "Artifacta Contributors" -release = "0.1.1" +release = "0.2.0" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 7ee0e4e..c15b77a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "artifacta" -version = "0.1.1" +version = "0.2.0" description = "Universal experiment and artifact tracking — gain insights and optimize models with confidence" readme = "README.md" requires-python = ">=3.8" @@ -163,7 +163,7 @@ markers = [ # Bump My Version configuration [tool.bumpversion] -current_version = "0.1.1" +current_version = "0.2.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/tracking-server/cli.py b/tracking-server/cli.py index 1e13465..fb34670 100755 --- a/tracking-server/cli.py +++ b/tracking-server/cli.py @@ -22,7 +22,7 @@ def get_project_root() -> Path: @click.group(invoke_without_command=True) -@click.version_option(version="0.1.1", prog_name="artifacta") +@click.version_option(version="0.2.0", prog_name="artifacta") @click.pass_context def cli(ctx: click.Context) -> None: """Artifacta - Universal experiment and artifact tracking — gain insights and optimize models with confidence."""