Skip to content

Commit

Permalink
chore(core): bump version to 0.11.1 and fix release script (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrriehl authored Apr 19, 2024
1 parent 95de7f7 commit 9bbdecb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions python/scripts/do_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

Expand Down

0 comments on commit 9bbdecb

Please sign in to comment.