Skip to content

Commit

Permalink
Version bumped to 0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Jun 3, 2018
1 parent 6e8d10c commit 5928ee3
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## [Unreleased]

## [0.0.11] - 2018-06-03
### Added
- Timezone support in DateTime type.
- Python 3.7 and PyPy in Travis CI build matrix.
- Direct bytes support in FixedString. Pull request [#26](https://github.com/mymarilyn/clickhouse-driver/pull/26) by [lidalei](https://github.com/lidalei).

### Removed
- Python 3.3 support.

## [0.0.10] - 2018-03-14
### Added
- Server version specific tests.
Expand All @@ -25,9 +34,11 @@
- SSL file descriptors closing in Python 2.7.

### Changed
- Drop Python 3.2 support due to lz4 issues.
- Log level for normal operations raised to DEBUG. Pull request [#17](https://github.com/mymarilyn/clickhouse-driver/pull/17) by [kmatt](https://github.com/kmatt).

### Removed
- Drop Python 3.2 support due to lz4 issues.

## [0.0.8] - 2017-10-23
### Added
- Parameters substitution for SELECT queries.
Expand Down Expand Up @@ -115,7 +126,8 @@
- Date/DateTime types.
- String types.

[Unreleased]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.10...HEAD
[Unreleased]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.11...HEAD
[0.0.11]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.10...0.0.11
[0.0.10]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.9...0.0.10
[0.0.9]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.8...0.0.9
[0.0.8]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.7...0.0.8
Expand Down
8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,14 @@ Specifying `query_id`:
query_id = str(uuid1())
print(client.execute('SHOW TABLES', query_id=query_id))
Client settings:

.. code-block:: python
# Set max number threads for all queries execution.
settings = {'max_threads': 2}
client = Client('localhost', settings=settings)
Overriding default query settings:

.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion src/__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, 10)
VERSION = (0, 0, 11)
__version__ = '.'.join(str(x) for x in VERSION)

__all__ = ['Client']

0 comments on commit 5928ee3

Please sign in to comment.