From 74fbec35fe92c024aedc6afe17feb134b0021a6f Mon Sep 17 00:00:00 2001 From: atarashansky Date: Tue, 19 Dec 2023 14:13:08 -0800 Subject: [PATCH] chore: Release version 1.2.0 (#2652) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump version: 1.1.2 → 1.2.0-rc.0 * Bump version: 1.2.0-rc.0 → 1.2.0 --- .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 afd18758a..511dccd53 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.2 +current_version = 1.2.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 7a86428c4..4f8d14ab2 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "cellxgene", - "version": "1.1.2", + "version": "1.2.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 8536390e9..957369fec 100644 --- a/server/__init__.py +++ b/server/__init__.py @@ -2,7 +2,7 @@ import sys from server.common.utils.utils import import_plugins -__version__ = "1.1.2" +__version__ = "1.2.0" display_version = "cellxgene v" + __version__ try: diff --git a/setup.py b/setup.py index 2c562c121..53b2c1b4b 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name="cellxgene", - version="1.1.2", + version="1.2.0", packages=find_packages(), url="https://github.com/chanzuckerberg/cellxgene", license="MIT",