Skip to content

Commit a9b28c5

Browse files
committed
Version bumped to 0.1.12
1 parent b5c9d86 commit a9b28c5

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## [0.1.12] - 2025-07-31
6+
### Added
7+
- ``WITH FILL`` clause.
8+
59
## [0.1.11] - 2024-03-25
610
### Fixed (backported from 0.2.x and 0.3.x )
711
- [alembic] Table reflection for alembic version < 1.11. Solves issue [#274](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/274).
@@ -262,7 +266,8 @@ Log, TinyLog, Null.
262266
- Chunked `INSERT INTO` in one request.
263267
- Engines: MergeTree, CollapsingMergeTree, SummingMergeTree, Buffer, Memory.
264268

265-
[Unreleased]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.11...HEAD
269+
[Unreleased]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.12...HEAD
270+
[0.1.12]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.11...0.1.12
266271
[0.1.11]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.10...0.1.11
267272
[0.1.10]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.9...0.1.10
268273
[0.1.9]: https://github.com/xzkostyan/clickhouse-sqlalchemy/compare/0.1.8...0.1.9

clickhouse_sqlalchemy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .sql import Table, MaterializedView, select
55

66

7-
VERSION = (0, 1, 11)
7+
VERSION = (0, 1, 12)
88
__version__ = '.'.join(str(x) for x in VERSION)
99

1010

0 commit comments

Comments
 (0)