diff --git a/CHANGES.md b/CHANGES.md index 3de60cd..9a05580 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,10 @@ -# Version 2.0.3 +# Version 2.0.4 Unreleased + +# Version 2.0.3 +June 10, 2025 + - Add support for READ COMMITTED transaction isolation (see [README.read_committed.md](README.read_committed.md)) - Add column comment to get_columns method (#253), thanks to @dotan-mor @@ -9,7 +13,7 @@ Unreleased - Add nested transaction support (#267), thanks to @mfmarche # Version 2.0.2 -January 10, 2023 +January 10, 2024 - Implement reflection for array types (#213) - Fix get_multi_columns() to support multiple table names in filter_array (#220) diff --git a/sqlalchemy_cockroachdb/__init__.py b/sqlalchemy_cockroachdb/__init__.py index daebe0e..eb4e820 100644 --- a/sqlalchemy_cockroachdb/__init__.py +++ b/sqlalchemy_cockroachdb/__init__.py @@ -1,7 +1,7 @@ from sqlalchemy.dialects import registry as _registry from .transaction import run_transaction # noqa -__version__ = "2.0.3.dev0" +__version__ = "2.0.4.dev0" _registry.register( "cockroachdb.psycopg2",