diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d34020c..e21c2dd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = False @@ -14,4 +14,3 @@ replace = __version__ = "{new_version}" [bumpversion:file:js/package.json] search = "version": "{current_version}" replace = "version": "{new_version}" - diff --git a/js/package.json b/js/package.json index 01766f3..6a7991d 100644 --- a/js/package.json +++ b/js/package.json @@ -1,5 +1,5 @@ { - "version": "0.1.0", + "version": "0.2.0", "private": true, "name": "raydar", "repository": "https://github.com/point72/raydar", diff --git a/pyproject.toml b/pyproject.toml index 37d47d3..d9a4294 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "hatchling.build" [project] name = "raydar" description = "A perspective powered, user editable ray dashboard via ray serve" -version = "0.1.0" +version = "0.2.0" readme = "README.md" license = { file = "LICENSE" } requires-python = ">=3.8" diff --git a/raydar/__init__.py b/raydar/__init__.py index d8caa55..f6d9f4d 100644 --- a/raydar/__init__.py +++ b/raydar/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" # import this first, might need to monkeypatch ray # https://github.com/ray-project/ray/issues/42654