diff --git a/python/pyproject.toml b/python/pyproject.toml index d2465b19..e050c5f9 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "uagents" -version = "0.11.0" +version = "0.11.1" description = "Lightweight framework for rapid agent-based development" authors = [ "Ed FitzGerald <edward.fitzgerald@fetch.ai>", diff --git a/python/scripts/do_release.py b/python/scripts/do_release.py index 80586c32..e34d3f48 100755 --- a/python/scripts/do_release.py +++ b/python/scripts/do_release.py @@ -63,8 +63,8 @@ def push_tag(current_version) -> None: def make_release(current_version: Version) -> None: """Make release on Github.""" subprocess.check_call( - f"""gh release create v{current_version} --title "v{current_version}" - --generate-notes --latest""", + f'gh release create v{current_version} --title "v{current_version}"' + " --generate-notes --latest", shell=True, )