diff --git a/tools/release.py b/tools/release.py index 6220ee8..81b92b8 100644 --- a/tools/release.py +++ b/tools/release.py @@ -65,7 +65,7 @@ def run_command(command: str): with open("pyproject.toml", "r") as f: pyproject = toml.load(f).unwrap() -pyproject["tool"]["poetry"]["version"] = str(version) +pyproject["project"]["version"] = str(version) with open("pyproject.toml", "w") as f: toml.dump(pyproject, f)