From fbe774066c6b725e8aa430a2aa7c13905cd04374 Mon Sep 17 00:00:00 2001 From: Waket Zheng Date: Tue, 11 Nov 2025 23:24:44 +0800 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.rst | 5 +++-- asyncodbc/__init__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3af8fe6..49a1b11 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -10,10 +10,11 @@ Changelog 0.2 ==== -0.2.0 (unreleased) -------------------- +0.2.0 +------------------- Added ^^^^^ +- Add official Python 3.14 support - Run bandit check in ci Changed diff --git a/asyncodbc/__init__.py b/asyncodbc/__init__.py index 1d46217..37ba239 100644 --- a/asyncodbc/__init__.py +++ b/asyncodbc/__init__.py @@ -5,7 +5,7 @@ from .connection import Connection, connect from .pool import Pool, create_pool -__version__ = "0.1.1" +__version__ = "0.2.0" __all__ = ["connect", "Connection", "create_pool", "Pool", "data_sources"]