From 16b19defcfb67d16ca409f8fa50d62999781ad63 Mon Sep 17 00:00:00 2001 From: Arathi Mani Date: Fri, 12 Feb 2021 21:45:13 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.16.2-rc.0=20=E2=86=92=200.1?= =?UTF-8?q?6.3-rc.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- client/package.json | 2 +- server/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 52c00a45..300b8c09 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.16.2-rc.0 +current_version = 0.16.3-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 ba1341ad..e62ce889 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "cellxgene", - "version": "0.16.2-rc.0", + "version": "0.16.3-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 d2a9bb57..b1b398a5 100644 --- a/server/__init__.py +++ b/server/__init__.py @@ -2,7 +2,7 @@ import logging import sys from server.common.utils.utils import import_plugins -__version__ = "0.16.2-rc.0" +__version__ = "0.16.3-rc.0" display_version = "cellxgene v" + __version__ try: diff --git a/setup.py b/setup.py index 06a2237f..36eb2591 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.2-rc.0", + version="0.16.3-rc.0", packages=find_packages(), url="https://github.com/chanzuckerberg/cellxgene", license="MIT",