From 7003842abb4bc69a518064ddd690489cb3b1b1a1 Mon Sep 17 00:00:00 2001 From: Ivan Ogasawara Date: Fri, 8 Dec 2023 13:42:38 -0400 Subject: [PATCH] fix semantic release configuration --- .releaserc.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.releaserc.json b/.releaserc.json index 799aa19..16ee8a7 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -11,12 +11,12 @@ { "replacements": [ { - "files": ["makim/__init__.py"], + "files": ["src/makim/__init__.py"], "from": "__version__ = '.*' # semantic-release", "to": "__version__ = '${nextRelease.version}' # semantic-release", "results": [ { - "file": "makim/__init__.py", + "file": "src/makim/__init__.py", "hasChanged": true, "numMatches": 1, "numReplacements": 1 @@ -68,7 +68,7 @@ "assets": [ "pyproject.toml", "docs/changelog.md", - "makim/__init__.py" + "src/makim/__init__.py" ], "message": "chore(release): ${nextRelease.version}" }