From 52790b7da0a7224762de58e7a13ef9f30f3ce10c Mon Sep 17 00:00:00 2001 From: Hannu Varjoranta Date: Wed, 13 May 2026 11:14:19 +0300 Subject: [PATCH] Bump version 0.6.0 -> 0.6.1 --- pyproject.toml | 2 +- src/etchdb/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9c359ac..7688831 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "etchdb" -version = "0.6.0" +version = "0.6.1" description = "Minimal async DB layer for Python. Typed CRUD over Pydantic, raw SQL when you need it" readme = "README.md" requires-python = ">=3.12" diff --git a/src/etchdb/__init__.py b/src/etchdb/__init__.py index 1ce54ba..6dd4095 100644 --- a/src/etchdb/__init__.py +++ b/src/etchdb/__init__.py @@ -13,7 +13,7 @@ from etchdb.query import SqlQuery from etchdb.row import Row -__version__ = "0.6.0" +__version__ = "0.6.1" __all__ = [ "DB",