Skip to content

Commit

Permalink
Version bumped to 0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Mar 25, 2024
1 parent 52d2224 commit 4f1a43f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [0.1.11] - 2024-03-25
### Fixed (backported from 0.2.x and 0.3.x )
- [alembic] Table reflection for alembic version < 1.11. Solves issue [#274](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/274).
- Guess number of `_reflect_table` alembic argsPull request [#249](https://github.com/xzkostyan/clickhouse-sqlalchemy/pull/249) by [9bany](https://github.com/9bany). Solves issue [#250](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/250).
- Inconsistency in `ischema_names` type converters. Pull request [#216](https://github.com/xzkostyan/clickhouse-sqlalchemy/pull/216) by [AntonFriberg](https://github.com/AntonFriberg). Solves issue [#215](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/215).

## [0.1.10] - 2022-06-06
### Added
- Documentation on Read the Docs: https://clickhouse-sqlalchemy.readthedocs.io
Expand Down Expand Up @@ -256,7 +262,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.10...HEAD
[Unreleased]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.11...HEAD
[0.1.11]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.10...0.1.11
[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
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, 10)
VERSION = (0, 1, 11)
__version__ = '.'.join(str(x) for x in VERSION)


Expand Down

0 comments on commit 4f1a43f

Please sign in to comment.