Skip to content

Commit

Permalink
Version bumped to 0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Oct 9, 2018
1 parent 7643b35 commit fb07101
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
# Changelog

## [Unreleased]

## [0.0.16] - 2018-10-09
### Added
- Option to access profile info about the last executed query.
- Option to access profile info about the last executed query. Pull request [#57](https://github.com/mymarilyn/clickhouse-driver/pull/57) by [vanzi](https://github.com/vanzi)
- Decimal type.
- Settings update to 18.14.2 server version.

### Changed
- String column read/write optimizations.
- Protocol version bumped to 54401.

### Fixed
- Client settings are not mutable now.

## [0.0.15] - 2018-09-26
### Fixed
Expand Down Expand Up @@ -151,7 +162,8 @@
- Date/DateTime types.
- String types.

[Unreleased]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.15...HEAD
[Unreleased]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.16...HEAD
[0.0.16]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.15...0.0.16
[0.0.15]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.14...0.0.15
[0.0.14]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.13...0.0.14
[0.0.13]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.12...0.0.13
Expand Down
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,12 @@ Accessing `ProfileInfo` of the last query (e.g. to read `rows_before_limit`):
rows = client.execute('SELECT * FROM test ORDER BY foo LIMIT 5')
total_rows_count = client.last_query.profile_info.rows_before_limit
Processing `String` columns without decoding. Return values are `bytes`.

.. code-block:: python
settings = {'strings_as_bytes': True}
rows = client.execute('SELECT * FROM huge_table_with_strings', settings=settings)
License
=======
Expand Down
2 changes: 1 addition & 1 deletion clickhouse_driver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .client import Client


VERSION = (0, 0, 15)
VERSION = (0, 0, 16)
__version__ = '.'.join(str(x) for x in VERSION)

__all__ = ['Client']

0 comments on commit fb07101

Please sign in to comment.