From 18d999182c160e3cda4ee3294e85ad7444ef3685 Mon Sep 17 00:00:00 2001 From: shadeofblue Date: Wed, 14 Oct 2020 10:08:26 +0200 Subject: [PATCH] assign the release version --- README.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ae7dc38b2..024ac1720 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ async def main(subnet_tag="testnet"): ) as engine: async for task in engine.map(worker, [Task(data=frame) for frame in frames]): - print(f"\033[36;1mTask computed: {task}, result: {task.output}\033[0m") + print(f"Task computed: {task}, result: {task.output}") enable_default_logger() diff --git a/pyproject.toml b/pyproject.toml index de7a865ad..27bbb15b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "yapapi" -version = "0.3.0-alpha.3" +version = "0.3.0" description = "High-level Python API for the New Golem" authors = ["Przemysław K. Rekucki "] license = "LGPL-3.0-or-later"