Skip to content

Commit

Permalink
Version bumped to 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Jun 6, 2022
1 parent f256700 commit 4a3c3f4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion clickhouse_sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 4a3c3f4

Please sign in to comment.