From cccd7bcdf12c1ebdb513fa375e017cc1dc0c0f83 Mon Sep 17 00:00:00 2001 From: Erez Shinan Date: Mon, 27 Oct 2025 17:56:48 -0300 Subject: [PATCH 1/2] Update dev status, revert version --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1d048cf..e5599c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sqeleton" -version = "0.1.8" +version = "0.1.7" description = "Python library for querying SQL databases" authors = ["Erez Shinan "] license = "MIT" @@ -14,7 +14,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", - "Development Status :: 2 - Pre-Alpha", + "Development Status :: 3 - Alpha", "Environment :: Console", "Topic :: Database :: Database Engines/Servers", "Typing :: Typed" From be09f5f06a82859e8cbb77e5a645346c49c10849 Mon Sep 17 00:00:00 2001 From: Erez Shinan Date: Mon, 27 Oct 2025 17:57:37 -0300 Subject: [PATCH 2/2] Version bump (0.1.8) --- pyproject.toml | 2 +- sqeleton/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e5599c4..544c081 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sqeleton" -version = "0.1.7" +version = "0.1.8" description = "Python library for querying SQL databases" authors = ["Erez Shinan "] license = "MIT" diff --git a/sqeleton/__init__.py b/sqeleton/__init__.py index ec94334..40f43bb 100644 --- a/sqeleton/__init__.py +++ b/sqeleton/__init__.py @@ -1,4 +1,4 @@ from .databases import connect from .queries import table, this, SKIP, code, commit -__version__ = "0.1.7" +__version__ = "0.1.8"