Skip to content

Commit

Permalink
Version bumped to 0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Oct 18, 2024
1 parent 8b6a514 commit 6a43356
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

## [Unreleased]
## [0.2.7] - 2024-10-18
### Fixed
- ClickHouse dialect extensions (FINAL, SAMPLE, LIMIT BY etc.) rendering in SQLAlchemy version 1.4.
- Unhashable type dict caused by full join. Solves issue [#276](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/276).

## [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).
Expand Down Expand Up @@ -329,7 +334,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.6...HEAD
[Unreleased]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.2.7...HEAD
[0.2.7]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.2.6...0.2.7
[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
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, 2, 6)
VERSION = (0, 2, 7)
__version__ = '.'.join(str(x) for x in VERSION)


Expand Down

0 comments on commit 6a43356

Please sign in to comment.