Skip to content

Commit

Permalink
Version 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Oct 29, 2023
1 parent 79781db commit 2f7ba23
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Changelog

## [Unreleased]
## [0.2.5] - 2023-10-29
### Added
- Table primary key reflection. Pull request [#265](https://github.com/xzkostyan/clickhouse-sqlalchemy/pull/265) by [akurdyukov](https://github.com/akurdyukov). Solves issue [#264](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/264).
- Python 3.11, 3.12 in Travis CI build matrix.

### Fixed
- Missing Array attributes. Pull request [#255](https://github.com/xzkostyan/clickhouse-sqlalchemy/pull/255) by [jonburdo](https://github.com/jonburdo). Solves issue [#254](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/254).
- DateTime and DateTime64 reflection. Solves issue [#148](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/148).
- Enum8 and Enum16 Unicode conversion. Pull request [#263](https://github.com/xzkostyan/clickhouse-sqlalchemy/pull/263) by [akurdyukov](https://github.com/akurdyukov). Solves issue [#192](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/192).
- [HTTP] Map type escaping. Pull request [#266](https://github.com/xzkostyan/clickhouse-sqlalchemy/pull/266) by [subkanthi](https://github.com/subkanthi). Solves issue [#148](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/148).
- 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).

### Removed
- greenlet dependency. Pull request [#257](https://github.com/xzkostyan/clickhouse-sqlalchemy/pull/257) by [mrcljx](https://github.com/mrcljx).

## [0.2.4] - 2023-05-02
### Added
- [Native] DateTime('timezone'). Solves issue [#230](https://github.com/xzkostyan/clickhouse-sqlalchemy/issues/230).
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, 4)
VERSION = (0, 2, 5)
__version__ = '.'.join(str(x) for x in VERSION)


Expand Down

0 comments on commit 2f7ba23

Please sign in to comment.