From 93f9127464ee6c60af77e265560333c16bd399e8 Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Fri, 31 Jan 2025 13:24:36 +0100 Subject: [PATCH] chore: bump version to 8.0.9 --- CHANGELOG.md | 4 ++++ doc/source/conf.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef0af11..db20c60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 8.0.9 + +- Fix: Licenese metadata in in `pyproject.toml` now states `licenese="MIT"` instead of specifying a file path. + ## 8.0.8 - Fix: SHA256 has for WHEEL file in the many-linux wheel dist info had been wrong, due to manually tinkering with the wheel metadata in the build process. The step is no migrated to `auditwheel`. Thanks to @rupurt for spotting the issue. diff --git a/doc/source/conf.py b/doc/source/conf.py index 13c2860..350bc05 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -22,7 +22,7 @@ author = "Markus Klein" # The full version, including alpha/beta/rc tags -release = "8.0.8" +release = "8.0.9" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 48f70ee..1ef7b66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [{name = "Markus Klein"}] description="Read the data of an ODBC data source as sequence of Apache Arrow record batches." readme = "README.md" license = "MIT" -version = "8.0.8" +version = "8.0.9" # cffi: for communicating with Rust # pyarrow: to create pyarrow arrays out of the c representation dependencies = ["cffi", "pyarrow >= 8.0.0"]