diff --git a/.cookiecutter.json b/.cookiecutter.json index 21f1396..c2fb40f 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1,5 +1,5 @@ { - "_commit": "c6577daf23a9972a456f2331e679b07c049a264a", + "_commit": "493cb358470e9f94b524bc60ef0eea8590004778", "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", "add_rust_extension": true, "author": "Kyle Oliver", diff --git a/.cruft.json b/.cruft.json index 8811d07..27f7acf 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "commit": "c6577daf23a9972a456f2331e679b07c049a264a", + "commit": "493cb358470e9f94b524bc60ef0eea8590004778", "checkout": null, "context": { "cookiecutter": { @@ -20,7 +20,7 @@ "license": "MIT", "development_status": "Development Status :: 1 - Planning", "_template": "C:\\Users\\56kyl\\source\\repos\\cookiecutter-robust-python", - "_commit": "c6577daf23a9972a456f2331e679b07c049a264a" + "_commit": "493cb358470e9f94b524bc60ef0eea8590004778" } }, "directory": null diff --git a/CHANGELOG.md b/CHANGELOG.md index b31257f..659e0f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## v0.2.0 (2025-09-18) + ## v0.1.0 (2025-09-18) ### Feat diff --git a/noxfile.py b/noxfile.py index b155816..0176c3e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -196,7 +196,7 @@ def docs_build(session: Session) -> None: def build_python(session: Session) -> None: """Build sdist and wheel packages (uv build).""" session.log(f"Building sdist and wheel packages with py{session.python}.") - session.run("maturin", "develop", "--uv") + session.run("uvx", "maturin", "develop", "--uv") session.log("Built packages in ./dist directory:") for path in Path("dist/").glob("*"): session.log(f"- {path.name}") diff --git a/pyproject.toml b/pyproject.toml index f93bbff..8bc0dfd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-maturin-demo" -version = "0.1.0" +version = "0.2.0" description = "robust-maturin-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" }, diff --git a/scripts/setup-remote.py b/scripts/setup-remote.py index 8874eaf..4a09732 100644 --- a/scripts/setup-remote.py +++ b/scripts/setup-remote.py @@ -49,9 +49,7 @@ def get_parser() -> argparse.ArgumentParser: metavar="PATH", help="Path to the repo's root directory (must already exist).", ) - parser.add_argument( - "--host", dest="repository_host", help="Repository host (e.g., github.com, gitlab.com)." - ) + parser.add_argument("--host", dest="repository_host", help="Repository host (e.g., github.com, gitlab.com).") parser.add_argument( "--path", dest="repository_path", help="Repository path (e.g., user/repo, group/subgroup/repo)." ) diff --git a/uv.lock b/uv.lock index c3e2f48..d1bd2b2 100644 --- a/uv.lock +++ b/uv.lock @@ -1059,7 +1059,7 @@ wheels = [ [[package]] name = "robust-maturin-demo" -version = "0.1.0" +version = "0.2.0" source = { editable = "." } dependencies = [ { name = "loguru" },