From 7adc49468d4ab8eb6a0bb223afbe080adafe38c0 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Sat, 26 Jul 2025 13:44:18 -0400 Subject: [PATCH 1/2] chore: remove accidentally committed ignored files --- build/lib/robust_python_demo/__init__.py | 1 - build/lib/robust_python_demo/__main__.py | 15 --------------- build/lib/robust_python_demo/py.typed | 0 3 files changed, 16 deletions(-) delete mode 100644 build/lib/robust_python_demo/__init__.py delete mode 100644 build/lib/robust_python_demo/__main__.py delete mode 100644 build/lib/robust_python_demo/py.typed diff --git a/build/lib/robust_python_demo/__init__.py b/build/lib/robust_python_demo/__init__.py deleted file mode 100644 index 40f1b5d..0000000 --- a/build/lib/robust_python_demo/__init__.py +++ /dev/null @@ -1 +0,0 @@ -"""Robust Python Demo.""" diff --git a/build/lib/robust_python_demo/__main__.py b/build/lib/robust_python_demo/__main__.py deleted file mode 100644 index 83d387b..0000000 --- a/build/lib/robust_python_demo/__main__.py +++ /dev/null @@ -1,15 +0,0 @@ -"""Command-line interface.""" - -import typer - - -app: typer.Typer = typer.Typer() - - -@app.command(name="robust-python-demo") -def main() -> None: - """Robust Python Demo.""" - - -if __name__ == "__main__": - app() # pragma: no cover diff --git a/build/lib/robust_python_demo/py.typed b/build/lib/robust_python_demo/py.typed deleted file mode 100644 index e69de29..0000000 From 1cca1d9a00363a3fe8ce5d0adac037d3350e7fb5 Mon Sep 17 00:00:00 2001 From: Kyle Oliver Date: Sat, 26 Jul 2025 13:44:38 -0400 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.15.0=20=E2=86=92=200.16?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 20 ++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92982b3..6e19ade 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## v0.16.0 (2025-07-26) + +## v0.14.0 (2025-07-18) + +## v0.13.0 (2025-07-18) + +## v0.12.0 (2025-07-18) + +## v0.11.0 (2025-07-18) + +## v0.10.0 (2025-07-18) + +## v0.9.0 (2025-07-18) + +## v0.8.0 (2025-07-18) + +## v0.7.0 (2025-07-18) + +## v0.6.0 (2025-07-18) + ## v0.15.0 (2025-07-26) ## v0.14.0 (2025-07-18) diff --git a/pyproject.toml b/pyproject.toml index df06121..801f850 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "robust-python-demo" -version = "0.15.0" +version = "0.16.0" description = "robust-python-demo" authors = [ { name = "Kyle Oliver", email = "56kyleoliver+cookiecutter-robust-python@gmail.com" },