diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 511dccd5..2c36eff1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.0 +current_version = 1.3.0 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 12cb1e03..8e78889d 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -1,12 +1,12 @@ { "name": "cellxgene", - "version": "1.2.0", + "version": "1.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cellxgene", - "version": "1.2.0", + "version": "1.3.0", "license": "MIT", "dependencies": { "@babel/eslint-parser": "^7.15.0", @@ -116,8 +116,8 @@ "webpack-obsolete-plugin": "^1.0.5" }, "engines": { - "node": "^16.0.0", - "npm": ">=3.0.0" + "node": "^18.17.0", + "npm": ">=9.6.7" } }, "node_modules/@ampproject/remapping": { diff --git a/client/package.json b/client/package.json index ebea28f6..3973e0ab 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "cellxgene", - "version": "1.2.0", + "version": "1.3.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 957369fe..eaab8003 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__ = "1.2.0" +__version__ = "1.3.0" display_version = "cellxgene v" + __version__ try: diff --git a/setup.py b/setup.py index 38c187c9..ebcc2d87 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ with open("server/requirements-annotate.txt") as fh: setup( name="cellxgene", - version="1.2.0", + version="1.3.0", packages=find_packages(), url="https://github.com/chanzuckerberg/cellxgene", license="MIT",