diff --git a/CHANGELOG.md b/CHANGELOG.md index c75a761b..502cd7c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## [Unreleased] +## [0.2.6] - 2024-03-25 +### Fixed (backported from 00.3.x) +- [alembic] Table reflection for alembic version < 1.11. Solves issue [#274](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/274). + ## [0.2.5] - 2023-10-29 ### Added - Table primary key reflection. Pull request [#265](https://github.com/xzkostyan/clickhouse-sqlalchemy/pull/265) by [akurdyukov](https://github.com/akurdyukov). Solves issue [#264](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/264). @@ -325,7 +329,8 @@ Log, TinyLog, Null. - Chunked `INSERT INTO` in one request. - Engines: MergeTree, CollapsingMergeTree, SummingMergeTree, Buffer, Memory. -[Unreleased]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.2.5...HEAD +[Unreleased]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.2.6...HEAD +[0.2.6]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.2.5...0.2.6 [0.2.5]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.2.4...0.2.5 [0.2.4]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.2.3...0.2.4 [0.2.3]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.2.2...0.2.3 diff --git a/clickhouse_sqlalchemy/__init__.py b/clickhouse_sqlalchemy/__init__.py index ed087ca9..dc867388 100644 --- a/clickhouse_sqlalchemy/__init__.py +++ b/clickhouse_sqlalchemy/__init__.py @@ -4,7 +4,7 @@ from .sql import Table, MaterializedView, select -VERSION = (0, 2, 5) +VERSION = (0, 2, 6) __version__ = '.'.join(str(x) for x in VERSION)