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 docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
project = "Artifacta"
copyright = "2025, Artifacta Contributors"
author = "Artifacta Contributors"
release = "0.1.1"
release = "0.2.0"

# General configuration
extensions = [
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -163,7 +163,7 @@ markers = [

# Bump My Version configuration
[tool.bumpversion]
current_version = "0.1.1"
current_version = "0.2.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
Expand Down
2 changes: 1 addition & 1 deletion tracking-server/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down