Skip to content

Commit

Permalink
Version bumped to 0.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Feb 19, 2019
1 parent 88b5ed6 commit 2d0fb6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [0.0.18] - 2019-02-19
### Fixed
- Strings mishandling read from buffer. Pull request [#72](https://github.com/mymarilyn/clickhouse-driver/pull/72) by [mitsuhiko](https://github.com/mitsuhiko).

## [0.0.17] - 2019-01-09
### Added
- Server logs displaying.
Expand Down Expand Up @@ -176,7 +180,8 @@
- Date/DateTime types.
- String types.

[Unreleased]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.17...HEAD
[Unreleased]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.18...HEAD
[0.0.18]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.17...0.0.18
[0.0.17]: https://github.com/mymarilyn/clickhouse-driver/compare/0.0.16...0.0.17
[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
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, 17)
VERSION = (0, 0, 18)
__version__ = '.'.join(str(x) for x in VERSION)

__all__ = ['Client']

0 comments on commit 2d0fb6b

Please sign in to comment.