From 158a4c7d43a30f187f2c48705c15ce9d772ee2ae Mon Sep 17 00:00:00 2001 From: maniarathi Date: Thu, 22 Oct 2020 14:18:03 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.16.5-rc.2=20=E2=86=92=200.1?= =?UTF-8?q?6.5?= 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 07f3e22a8..5983ba96d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.16.5-rc.2 +current_version = 0.16.5 commit = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?Prc)\.(?P\d+))? serialize = diff --git a/client/package.json b/client/package.json index f69da6344..797d05b55 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "cellxgene", - "version": "0.16.5-rc.2", + "version": "0.16.5", "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 88371c435..6f27af24e 100644 --- a/server/__init__.py +++ b/server/__init__.py @@ -2,7 +2,7 @@ import sys from server.common.utils.utils import import_plugins -__version__ = "0.16.5-rc.2" +__version__ = "0.16.5" display_version = "cellxgene v" + __version__ try: diff --git a/setup.py b/setup.py index 1fa23223a..2fc3b0c7a 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="cellxgene", - version="0.16.5-rc.2", + version="0.16.5", packages=find_packages(), url="https://github.com/chanzuckerberg/cellxgene", license="MIT",