diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fbdedefc7..83645f109 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?Prc)\.(?P\d+))? serialize = diff --git a/client/package-lock.json b/client/package-lock.json index 7b48f5d5f..24746a45e 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -1,12 +1,12 @@ { "name": "cellxgene", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cellxgene", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "dependencies": { "@babel/eslint-parser": "^7.15.0", diff --git a/client/package.json b/client/package.json index c8cd21a18..04c2ad664 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "cellxgene", - "version": "1.0.0", + "version": "1.0.1", "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 75bbc8542..b77958c1f 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.0.0" +__version__ = "1.0.1" display_version = "cellxgene v" + __version__ try: diff --git a/setup.py b/setup.py index 4f4a55461..4ce399060 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="cellxgene", - version="1.0.0", + version="1.0.1", packages=find_packages(), url="https://github.com/chanzuckerberg/cellxgene", license="MIT",