From 661c81a92d43f4885256e5f696e2cab1b79ecbe6 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 7 May 2024 17:35:39 -0400 Subject: [PATCH] chore: prepare for 1.0.0rc1 (#48) * chore: prepare for 1.0.0 Signed-off-by: Henry Schreiner * chore: make an rc release Signed-off-by: Henry Schreiner --------- Signed-off-by: Henry Schreiner --- pyproject.toml | 3 ++- src/check_sdist/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 83cee5c..60e471d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ description = "Check the contents of an SDist vs. git" readme = "README.md" requires-python = ">=3.8" classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", @@ -59,6 +59,7 @@ check-sdist = "check_sdist.schema:get_schema" [tool.hatch] version.path = "src/check_sdist/__init__.py" envs.default.features = ["test"] +envs.hatch-test.features = ["test", "cli"] [tool.pytest.ini_options] diff --git a/src/check_sdist/__init__.py b/src/check_sdist/__init__.py index d7ccf08..aba3c90 100644 --- a/src/check_sdist/__init__.py +++ b/src/check_sdist/__init__.py @@ -6,6 +6,6 @@ from __future__ import annotations -__version__ = "0.1.3" +__version__ = "1.0.0rc1" __all__ = ["__version__"]