Skip to content

Commit

Permalink
Version bumped to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Feb 21, 2020
1 parent a9fb00f commit f11e59f
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
# Changelog

## [0.1.3] - Unreleased
## [0.1.3] - 2020-02-21
### Added
- Python DB API 2.0.
- Multiple hosts support on connection errors.
- Insert columnar data support. Pull request [#122](https://github.com/mymarilyn/clickhouse-driver/pull/122) by [Anexen](https://github.com/Anexen).
- Wheels for Python 3.8.
- DateTime64 type.
- Settings update to v20.2.1.2201 server version. Pull request [#123](https://github.com/mymarilyn/clickhouse-driver/pull/123) by [azat](https://github.com/azat).

### Fixed
- `Client.from_url` settings detection.
- Close socket on `KeyboardInterrupt` while running query.
- Null handling in LowCardinality columns.

### Changed
- Protocol version bumped to 54421.
- Increased speed (up to 20-30% compared to 0.1.2 release) on heavy `SELECT` and `INSERT` queries. Pull request [#122](https://github.com/mymarilyn/clickhouse-driver/pull/122) by [Anexen](https://github.com/Anexen).
- Memory consumption decreased (up to 20% compared to 0.1.2 release). Pull request [#122](https://github.com/mymarilyn/clickhouse-driver/pull/122) by [Anexen](https://github.com/Anexen).

## [0.1.2] - 2019-10-18
### Added
Expand Down Expand Up @@ -233,7 +248,8 @@
- Date/DateTime types.
- String types.

[Unreleased]: https://github.com/mymarilyn/clickhouse-driver/compare/0.1.2...HEAD
[Unreleased]: https://github.com/mymarilyn/clickhouse-driver/compare/0.1.3...HEAD
[0.1.3]: https://github.com/mymarilyn/clickhouse-driver/compare/0.1.2...0.1.3
[0.1.2]: https://github.com/mymarilyn/clickhouse-driver/compare/0.1.1...0.1.2
[0.1.1]: https://github.com/mymarilyn/clickhouse-driver/compare/0.1.0...0.1.1
[0.1.0]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.20...0.1.0
Expand Down
4 changes: 3 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ Features

- Receiving server logs.

- Multiple hosts support.

- Python DB API 2.0 specification support.

Documentation
Expand Down Expand Up @@ -99,7 +101,7 @@ Pure Client example:
>>> client.execute('SELECT sum(x) FROM test')
[(303,)]
DB API example:
DB API example:

.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion clickhouse_driver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .dbapi import connect


VERSION = (0, 1, 2)
VERSION = (0, 1, 3)
__version__ = '.'.join(str(x) for x in VERSION)

__all__ = ['Client', 'connect']
2 changes: 1 addition & 1 deletion docs/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ of hosts if previous host is unavailable:
* host3:9000;
* host4:5678.

The all queries within established connection will be sent to the same host.
All queries within established connection will be sent to the same host.


Python DB API 2.0
Expand Down

0 comments on commit f11e59f

Please sign in to comment.