From f91e7849c9c91ad9401bf32b16fc50c1f7f601dc Mon Sep 17 00:00:00 2001 From: juftin Date: Thu, 14 Dec 2023 23:27:35 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20=5Fversion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .releaserc.json | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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