diff --git a/.releaserc.json b/.releaserc.json index 76124b14..ce204905 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -25,7 +25,7 @@ [ "@semantic-release/git", { - "assets": ["pyproject.toml", "*/__about__.py"], + "assets": ["pyproject.toml", "*/_version.py"], "message": "🔖 lunchable ${nextRelease.version}\n\n${nextRelease.notes}\n[skip ci]" } ], diff --git a/pyproject.toml b/pyproject.toml index 0da4c9a3..2ff278b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,7 @@ exclude_lines = [ [tool.coverage.run] branch = true omit = [ - "lunchable/__about__.py" + "lunchable/_version.py" ] parallel = true source_pkgs = ["lunchable", "tests"] @@ -207,7 +207,7 @@ test = "pytest {args:tests}" test-cov = "coverage run -m pytest {args:tests}" [tool.hatch.version] -path = "lunchable/__about__.py" +path = "lunchable/_version.py" [tool.mypy] check_untyped_defs = true