diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 61a1f6e..34deb75 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,8 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.2.2 commit = True tag = False +commit_args = -s [bumpversion:file:pyproject.toml] search = version = "{current_version}" diff --git a/README.md b/README.md index 0f0c0ec..509d5c6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A [perspective](https://perspective.finos.org/) powered, user editable ray dashboard via ray serve. -[![Build Status](https://github.com/Point72/raydar/actions/workflows/build.yml/badge.svg)](https://github.com/Point72/raydar/actions/workflows/build.yml) +[![Build Status](https://github.com/Point72/raydar/actions/workflows/build.yml/badge.svg?branch=main&event=push)](https://github.com/Point72/raydar/actions/workflows/build.yml) [![PyPI Version](https://img.shields.io/pypi/v/raydar.svg)](https://pypi.python.org/pypi/raydar) [![License](https://img.shields.io/pypi/l/raydar.svg)](https://github.com/Point72/raydar/blob/main/LICENSE) [![Python Versions](https://img.shields.io/badge/python-3.8_%7C_3.9_%7C_3.10_%7C_3.11-blue)](https://github.com/Point72/raydar/blob/main/pyproject.toml) diff --git a/js/package.json b/js/package.json index 945bf99..8d03c9f 100644 --- a/js/package.json +++ b/js/package.json @@ -1,5 +1,5 @@ { - "version": "0.2.1", + "version": "0.2.2", "private": true, "name": "raydar", "repository": "https://github.com/point72/raydar", diff --git a/pyproject.toml b/pyproject.toml index 6e20ea8..c521a80 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.2.1" +version = "0.2.2" readme = "README.md" license = { file = "LICENSE" } requires-python = ">=3.8" diff --git a/raydar/__init__.py b/raydar/__init__.py index 9b90498..06f8d34 100644 --- a/raydar/__init__.py +++ b/raydar/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.1" +__version__ = "0.2.2" # import this first, might need to monkeypatch ray # https://github.com/ray-project/ray/issues/42654