From 279d1be28380afef2682b4f09cbf3f014bcf3967 Mon Sep 17 00:00:00 2001 From: maniarathi Date: Mon, 21 Sep 2020 11:19:52 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.16.0=20=E2=86=92=200.16.1-r?= =?UTF-8?q?c.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 9 +++------ client/package.json | 2 +- server/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3ec24118..ff4dc25e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,17 +1,14 @@ [bumpversion] -current_version = 0.16.0 +current_version = 0.16.1-rc.0 commit = True -# The below regex details an acceptable version number by naming the groups (major, minor, patch, prerel, and -# prerelversion) and also specifying the valid values for each group (integers, `\d+`, for major, minor, patch, and -# prerelversion and only `rc` as the acceptable value for prerel). parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?Prc)\.(?P\d+))? -serialize = +serialize = {major}.{minor}.{patch}-{prerel}.{prerelversion} {major}.{minor}.{patch} [bumpversion:part:prerel] optional_value = release -values = +values = rc release diff --git a/client/package.json b/client/package.json index 9e6f20ef..e6ecf402 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "cellxgene", - "version": "0.16.0", + "version": "0.16.1-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 94238d9a..8fdd2f0e 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.0" +__version__ = "0.16.1-rc.0" display_version = "cellxgene v" + __version__ try: diff --git a/setup.py b/setup.py index 56a2bd28..9278af3b 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.0", + version="0.16.1-rc.0", packages=find_packages(), url="https://github.com/chanzuckerberg/cellxgene", license="MIT",