diff --git a/Makefile b/Makefile index cf99cd6..cba0d57 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ bump-version: @echo [!] Bumping version from $(CURRENT_VERSION) to $(NEW_VERSION) - @poetry version $(NEW_VERSION) || true + @cd sdk && poetry version $(NEW_VERSION) || true @git add sdk/pyproject.toml || true git commit -F /tmp/commit-message --amend --no-edit diff --git a/sdk/pyproject.toml b/sdk/pyproject.toml index 049ab69..2f37c92 100644 --- a/sdk/pyproject.toml +++ b/sdk/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mlnotify" -version = "1.0.0" +version = "v1.0.35" description = "ML Notify - A useful tool that notifies you when your model is finished training" authors = ['Aporia'] repository = "https://github.com/aporia-ai/mlnotify"