Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion sqlalchemy_cockroachdb/__init__.py
Original file line number Diff line number Diff line change
@@ -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",
Expand Down