From 57b53d299a779db21f8012dd9ee8c3f8ae17323c Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 31 Aug 2021 14:14:37 +0000 Subject: [PATCH] chore(release): 4.0.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 8 ++++++++ numbsql/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61cd7671..4bed11b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v4.0.0 (2021-08-31) +### Breaking +* The library was renamed from slumba to numbsql ([`b7a852f`](https://github.com/cpcloud/numbsql/commit/b7a852f4c7a9c103583e01a6275d0ad0dc8929bd)) + +### Documentation +* Add some numbaext docs ([`b6bfec0`](https://github.com/cpcloud/numbsql/commit/b6bfec0c6b1926dc08bfde478a45a07a19f3b9a0)) +* Remove invalid comment ([`3db321d`](https://github.com/cpcloud/numbsql/commit/3db321d696f4383b39ad012bf34442bef58d2bd0)) + ## v3.1.0 (2021-08-25) ### Feature * Support strings in scalar udfs but not in udafs ([`fe03e2f`](https://github.com/cpcloud/slumba/commit/fe03e2f97cdf0c383e9a09f529ef6425cdd95c0f)) diff --git a/numbsql/__init__.py b/numbsql/__init__.py index bd1ecf23..7a092f84 100644 --- a/numbsql/__init__.py +++ b/numbsql/__init__.py @@ -43,7 +43,7 @@ def _safe_decref(obj: Any) -> None: "sqlite_udaf", ) -__version__ = "3.1.0" +__version__ = "4.0.0" def create_function( diff --git a/pyproject.toml b/pyproject.toml index 9345bb0e..586f2196 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "numbsql" packages = [{ include = "numbsql" }] homepage = "https://github.com/cpcloud/numbsql" repository = "https://github.com/cpcloud/numbsql" -version = "3.1.0" +version = "4.0.0" description = "JITted SQLite user-defined functions and aggregates" readme = "README.md" authors = ["Phillip Cloud <417981+cpcloud@users.noreply.github.com>"]