diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 300b8c09..5ad448a0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.16.3-rc.0 +current_version = 0.16.4-rc.0 commit = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?Prc)\.(?P\d+))? serialize = diff --git a/client/package.json b/client/package.json index 842f2259..bb3a43f6 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "cellxgene", - "version": "0.16.3-rc.0", + "version": "0.16.4-rc.0", "license": "MIT", "description": "cellxgene is a web application for the interactive exploration of single cell sequence data.", "repository": "https://github.com/chanzuckerberg/cellxgene", diff --git a/server/__init__.py b/server/__init__.py index 921e0c77..9e510708 100644 --- a/server/__init__.py +++ b/server/__init__.py @@ -3,7 +3,7 @@ import sys from server.common.utils.utils import import_plugins -__version__ = "0.16.3-rc.0" +__version__ = "0.16.4-rc.0" display_version = "cellxgene v" + __version__ try: diff --git a/setup.py b/setup.py index 36eb2591..221d9e3f 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open("server/requirements-prepare.txt") as fh: setup( name="cellxgene", - version="0.16.3-rc.0", + version="0.16.4-rc.0", packages=find_packages(), url="https://github.com/chanzuckerberg/cellxgene", license="MIT",