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
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Version 2.0.4
# Version 2.0.5
Unreleased


# Version 2.0.4
April 23, 2026

- Fix reflection of CHAR columns (#275)
- Fix reflection of TIMESTAMPTZ columns (#276), thanks to @nvachhar
- Fix reflection of JSONB columns (#277)
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.4.dev0"
__version__ = "2.0.5.dev0"

_registry.register(
"cockroachdb.psycopg2",
Expand Down
Loading