From 9b048f4abc3f74bbc11c2102f7d7d05fe0fe0201 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 2 Jun 2024 12:14:02 +0000 Subject: [PATCH] chore(release): 7.1.0 --- CHANGELOG.md | 7 +++++++ numbsql/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f298e6b..05f9240b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes +## [7.1.0](https://github.com/cpcloud/numbsql/compare/7.0.0...7.1.0) (2024-06-02) + +### Features + +* **deps:** add support for python 3.12 ([f88229b](https://github.com/cpcloud/numbsql/commit/f88229be4c31fa7ca83ab482d06d6b9ed264059d)) +* **deps:** support latest versions of numba and llvmlite ([1e8d8ce](https://github.com/cpcloud/numbsql/commit/1e8d8cef31c410ad45c4f93c7dcca60816e451bd)) + ## [7.0.0](https://github.com/cpcloud/numbsql/compare/6.0.1...7.0.0) (2023-12-07) diff --git a/numbsql/__init__.py b/numbsql/__init__.py index 4e2f4ae7..958c1843 100644 --- a/numbsql/__init__.py +++ b/numbsql/__init__.py @@ -45,7 +45,7 @@ def _safe_decref(obj: Any) -> None: "sqlite_udaf", ) -__version__ = "7.0.0" +__version__ = "7.1.0" def create_function( diff --git a/pyproject.toml b/pyproject.toml index b0e84fa8..c8f2dea4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "numbsql" homepage = "https://github.com/cpcloud/numbsql" repository = "https://github.com/cpcloud/numbsql" -version = "7.0.0" +version = "7.1.0" description = "JITted SQLite user-defined scalar and aggregate functions" readme = "README.md" authors = ["Phillip Cloud <417981+cpcloud@users.noreply.github.com>"]