diff --git a/.cookiecutter.json b/.cookiecutter.json index 92e8084..e8e1d81 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,7 @@ { - "_commit": "b34f76d47340e575885b5a23a58d974734369ed5", + "_commit": "b374c3258fef94c1b1c21a5a37c6eb7594e0ad46", + "_max_python_version_minor_int": 14, + "_min_python_version_minor_int": 10, "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", "add_rust_extension": false, "author": "Kyle Oliver", @@ -12,6 +14,13 @@ "min_python_version": "3.10", "package_name": "robust_python_demo", "project_name": "robust-python-demo", + "python_versions": [ + "3.10", + "3.11", + "3.12", + "3.13", + "3.14" + ], "repository_host": "github.com", "repository_path": "56kyle/robust-python-demo", "repository_provider": "github", diff --git a/.cruft.json b/.cruft.json index ccb593c..aed073a 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "b34f76d47340e575885b5a23a58d974734369ed5", + "commit": "b374c3258fef94c1b1c21a5a37c6eb7594e0ad46", "checkout": null, "context": { "cookiecutter": { @@ -20,7 +20,16 @@ "license": "MIT", "development_status": "Development Status :: 1 - Planning", "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "_commit": "b34f76d47340e575885b5a23a58d974734369ed5" + "_commit": "b374c3258fef94c1b1c21a5a37c6eb7594e0ad46", + "_min_python_version_minor_int": 10, + "_max_python_version_minor_int": 14, + "python_versions": [ + "3.10", + "3.11", + "3.12", + "3.13", + "3.14" + ] } }, "directory": null diff --git a/CHANGELOG.md b/CHANGELOG.md index 25deb1f..7a1eb49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v0.31.0 (2025-11-17) + ## v0.30.0 (2025-11-10) ## v0.27.0 (2025-09-18) diff --git a/pyproject.toml b/pyproject.toml index 1e71370..f0ee277 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-python-demo" -version = "0.30.0" +version = "0.31.0" description = "robust-python-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" }, @@ -13,8 +13,15 @@ keywords = [ "robust-python-demo", ] classifiers = [ - "Programming Language :: Python :: 3.10", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", + "Development Status :: 1 - Planning" ] dependencies = [ "loguru>=0.7.3", diff --git a/uv.lock b/uv.lock index cce8355..3eb7d6d 100644 --- a/uv.lock +++ b/uv.lock @@ -989,7 +989,7 @@ wheels = [ [[package]] name = "robust-python-demo" -version = "0.30.0" +version = "0.31.0" source = { editable = "." } dependencies = [ { name = "loguru" },