Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.1] - 2025-03-10

### Added

- `ClickhouseServerAPI` can register `pandas` tables with datetime columns, and allows integers to be signed [#61](https://github.com/ADBond/splinkclickhouse/pull/61).
Expand Down Expand Up @@ -124,7 +126,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

[Unreleased]: https://github.com/ADBond/splinkclickhouse/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/ADBond/splinkclickhouse/compare/v0.4.1...HEAD
[0.4.1]: https://github.com/ADBond/splinkclickhouse/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/ADBond/splinkclickhouse/compare/v0.3.4...v0.4.0
[0.3.4]: https://github.com/ADBond/splinkclickhouse/compare/v0.3.3...v0.3.4
[0.3.3]: https://github.com/ADBond/splinkclickhouse/compare/v0.3.2...v0.3.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ or you can install the package directly from github:

```sh
# Replace with any version you want, or specify a branch after '@'
pip install git+https://github.com/ADBond/splinkclickhouse.git@v0.4.0
pip install git+https://github.com/ADBond/splinkclickhouse.git@v0.4.1
```

If instead you are using `conda`, `splinkclickhouse` is available on [conda-forge](https://conda-forge.org/):
Expand Down
2 changes: 1 addition & 1 deletion dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ Inspect package contents:

```sh
# replace version as appropriate
mkdir -p tmp && tar -xzvf dist/splinkclickhouse-0.4.0.tar.gz -C tmp/
mkdir -p tmp && tar -xzvf dist/splinkclickhouse-0.4.1.tar.gz -C tmp/
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "splinkclickhouse"
version = "0.4.0"
version = "0.4.1"
description = "Clickhouse backend support for Splink"
authors = [{name = "Andrew Bond"}]
license = {text = "MIT License"}
Expand Down
2 changes: 1 addition & 1 deletion splinkclickhouse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .clickhouse_server.database_api import ClickhouseServerAPI

__version__ = "0.4.0"
__version__ = "0.4.1"


# Use getarr to make the error appear at the point of use
Expand Down
4 changes: 2 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading