From 4a3c3f47dae3820cb77d1923a1bc23919f666518 Mon Sep 17 00:00:00 2001 From: Konstantin Lebedev Date: Mon, 23 May 2022 11:41:49 +0300 Subject: [PATCH] Version bumped to 0.1.10 --- CHANGELOG.md | 12 +++++++++++- clickhouse_sqlalchemy/__init__.py | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5c3ca34..869aed42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## [0.1.10] - 2022-06-06 +### Added +- Documentation on Read the Docs: https://clickhouse-sqlalchemy.readthedocs.io + +### Fixed +- ``AFTER`` clause rendering in ``ADD COLUMN``. +- Broken Materialized views creation via ``.create()``. +- Engine creation in migrations for alembic 1.6+. ``Engine`` is subclass of ``Constraint`` now. + ## [0.1.9] - 2022-05-08 ### Fixed - ReplicatedReplacingMergeTree reflection. Solves issue [#164](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/164). @@ -247,7 +256,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.1.9...HEAD +[Unreleased]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.10...HEAD +[0.1.10]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.9...0.1.10 [0.1.9]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.8...0.1.9 [0.1.8]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.7...0.1.8 [0.1.7]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.6...0.1.7 diff --git a/clickhouse_sqlalchemy/__init__.py b/clickhouse_sqlalchemy/__init__.py index fec84df1..120bc0bf 100644 --- a/clickhouse_sqlalchemy/__init__.py +++ b/clickhouse_sqlalchemy/__init__.py @@ -4,7 +4,7 @@ from .sql import Table, MaterializedView, select -VERSION = (0, 1, 9) +VERSION = (0, 1, 10) __version__ = '.'.join(str(x) for x in VERSION)