From 5fe77dbb7d3ecb1c98e8655b2abd29c9613b683e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Wed, 21 Dec 2022 20:33:04 +0100 Subject: [PATCH 1/2] REL: bump version to 1.0.0, add PyPI classifiers --- pyproject.toml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cc30734..8d6e756 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,17 +9,29 @@ requires = [ [project] name = "ewah_bool_utils" -version = "0.1.1" +version = "1.0.0" description = "EWAH Bool Array utils for yt" authors = [ { name = "Matthew Turk" }, - { name = "Meagan Lang"}, - { name = "Navaneeth Suresh"}, + { name = "Meagan Lang" }, + { name = "Navaneeth Suresh" }, ] requires-python =">=3.8" dependencies = [ "numpy>=1.17.5", ] +classifiers = [ + "Intended Audience :: Developers", + "Development Status :: 5 - Production/Stable", + "License :: OSI Approved :: BSD License", + "Programming Language :: Cython", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", +] [project.license] text = "BSD" From e811fde0e024ae37a2155758049c3e492468c6b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Thu, 22 Dec 2022 12:00:46 +0100 Subject: [PATCH 2/2] DOC: add changelog entry for v1.0.0 --- HISTORY.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 66b27d0..82a3250 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,21 @@ History ======= +1.0.0 (2022-12-22) +------------------ + +* MAINT: improvements in packaging quality by @neutrinoceros in https://github.com/yt-project/ewah_bool_utils/pull/1 +* Package using poetry by @themousepotato in https://github.com/yt-project/ewah_bool_utils/pull/2 +* Update EWAH from upstream lemire/EWAHBoolArray by @themousepotato in https://github.com/yt-project/ewah_bool_utils/pull/3 +* TST: revive CI by @neutrinoceros in https://github.com/yt-project/ewah_bool_utils/pull/6 +* MNT: bootstrap pre-commit by @neutrinoceros in https://github.com/yt-project/ewah_bool_utils/pull/5 +* TST: expand test matrix by @neutrinoceros in https://github.com/yt-project/ewah_bool_utils/pull/10 +* BLD: explicitly require wheel as a buildtime dependency by @neutrinoceros in https://github.com/yt-project/ewah_bool_utils/pull/11 +* TST: finalize testing on MacOS by @neutrinoceros in https://github.com/yt-project/ewah_bool_utils/pull/12 +* MNT: update code from yt by @neutrinoceros in https://github.com/yt-project/ewah_bool_utils/pull/4 +* REL: add wheels+publish workflow by @neutrinoceros in https://github.com/yt-project/ewah_bool_utils/pull/13 + + 0.1.0 (2020-06-08) ------------------