From c93a42560db1b4d78b8da64c9552a4b6e933c8d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20W=C3=B6rpel?= Date: Tue, 14 Nov 2023 08:07:22 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Bump=20version:=200.2.0=20?= =?UTF-8?q?=E2=86=92=200.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- VERSION | 2 +- ftm_columnstore/__init__.py | 2 +- ftm_columnstore/settings.py | 2 +- pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4c87410..9a52bb7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 commit = True tag = True message = 🔖 Bump version: {current_version} → {new_version} diff --git a/VERSION b/VERSION index 0ea3a94..0c62199 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.0 +0.2.1 diff --git a/ftm_columnstore/__init__.py b/ftm_columnstore/__init__.py index f26f9d7..3af60f7 100644 --- a/ftm_columnstore/__init__.py +++ b/ftm_columnstore/__init__.py @@ -16,6 +16,6 @@ # FIXME sqlalchemy monkey patch not working nomenklatura.settings.DB_URL = "sqlite:///:memory:" -__version__ = "0.2.0" +__version__ = "0.2.1" __all__ = ["get_engine", "get_store"] diff --git a/ftm_columnstore/settings.py b/ftm_columnstore/settings.py index 0436881..f1686c5 100644 --- a/ftm_columnstore/settings.py +++ b/ftm_columnstore/settings.py @@ -1,6 +1,6 @@ import os -VERSION = "0.2.0" +VERSION = "0.2.1" def get_env(name, default=None): diff --git a/pyproject.toml b/pyproject.toml index 8db4aca..31e9f4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ftm-columnstore" -version = "0.2.0" +version = "0.2.1" description = "Column store implementation for ftm data based on clickhouse" authors = ["Simon Wörpel "] license = "GPL3"