Skip to content

Commit 124e783

Browse files
authored
Merge pull request #5 from ADBond/release/0.2.0
Release v0.2.0
2 parents 11719eb + b2678d3 commit 124e783

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [0.2.0] - 2024-09-11
11+
1012
### Added
1113

1214
- `ClickhouseAPI` and dataframe added to support running calculations in a Clickhouse instance [#4](https://github.com/ADBond/splinkclickhouse/pull/4)
@@ -27,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2729

2830
- Basic working version of package with api for `chdb`
2931

30-
[unreleased]: https://github.com/ADBond/splinkclickhouse/compare/v0.1.1...HEAD
32+
[unreleased]: https://github.com/ADBond/splinkclickhouse/compare/v0.2.0...HEAD
33+
[0.2.0]: https://github.com/ADBond/splinkclickhouse/compare/v0.1.1...v0.2.0
3134
[0.1.1]: https://github.com/ADBond/splinkclickhouse/compare/v0.1.0...v0.1.1
3235
[0.1.0]: https://github.com/ADBond/splinkclickhouse/releases/tag/v0.1.0

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "splinkclickhouse"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "Clickhouse backend support for Splink"
55
authors = ["Andrew Bond"]
66
license = "MIT"

splinkclickhouse/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .chdb.database_api import ChDBAPI
22
from .clickhouse.database_api import ClickhouseAPI
33

4-
__version__ = "0.1.1"
4+
__version__ = "0.2.0"
55

66
__all__ = ["ChDBAPI", "ClickhouseAPI"]

0 commit comments

Comments
 (0)