We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1061dd1 commit 1a9277cCopy full SHA for 1a9277c
CHANGES.md
@@ -1,7 +1,9 @@
1
-# Version 1.3.4
+# Version 1.4.0
2
+Released July 29, 2021
3
- Add telemetry to SQLAlchemy CockroachDB
4
- Telemetry is enabled by default, set disable_cockroachdb_telemetry in create_engine's connect_args field to disable.
5
- ```Example: engine = create_engine('cockroachdb://...', connect_args={"disable_cockroachdb_telemetry": True})```
6
+- Initial compatibility with SQLAlchemy 1.4.
7
8
9
# Version 1.3.3
sqlalchemy_cockroachdb/__init__.py
@@ -1,7 +1,7 @@
from sqlalchemy.dialects import registry as _registry
from .transaction import run_transaction # noqa
-__version__ = "1.4.0.dev0"
+__version__ = "1.4.0"
_registry.register(
"cockroachdb.psycopg2",
0 commit comments