diff --git a/js/package.json b/js/package.json index 7569050..fd0aaa0 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "raydar", - "version": "0.2.4", + "version": "0.3.0", "description": "A perspective powered, user editable ray dashboard via ray serve", "repository": "git@github.com:Point72/raydar.git", "author": "Point72, L.P. ", diff --git a/pyproject.toml b/pyproject.toml index 8cb156f..6989b1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [{name = "Point72, L.P.", email = "OpenSource@point72.com"}] description = "A perspective powered, user editable ray dashboard via ray serve" readme = "README.md" license = { text = "Apache-2.0" } -version = "0.2.4" +version = "0.3.0" requires-python = ">=3.10" keywords = [ "perspective", @@ -73,7 +73,7 @@ Repository = "https://github.com/Point72/raydar" Homepage = "https://github.com/Point72/raydar" [tool.bumpversion] -current_version = "0.2.4" +current_version = "0.3.0" commit = true tag = true commit_args = "-s" @@ -93,11 +93,6 @@ filename = "js/package.json" search = '"version": "{current_version}"' replace = '"version": "{new_version}"' -[[tool.bumpversion.files]] -filename = "js/src/index.html" -search = 'Raydar v{current_version}' -replace = 'Raydar v{new_version}' - [tool.check-manifest] ignore = [ ".copier-answers.yaml", diff --git a/raydar/__init__.py b/raydar/__init__.py index 4ce3df9..64969db 100644 --- a/raydar/__init__.py +++ b/raydar/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.4" +__version__ = "0.3.0" # import this first, might need to monkeypatch ray # https://github.com/ray-project/ray/issues/42654