Skip to content

Commit f4986c9

Browse files
authored
Release version 0.19.0 (#2444)
* Bump version: 0.18.0 → 0.19.0-rc.0 * release can 0.19.0 * Bump version: 0.19.0-rc.0 → 0.19.0-rc.1 * bump rc * Bump version: 0.19.0-rc.1 → 0.19.0 * release final
1 parent a0011b0 commit f4986c9

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.bumpversion.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[bumpversion]
2-
current_version = 0.18.0
2+
current_version = 0.19.0
33
commit = True
44
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<prerel>rc)\.(?P<prerelversion>\d+))?
5-
serialize =
5+
serialize =
66
{major}.{minor}.{patch}-{prerel}.{prerelversion}
77
{major}.{minor}.{patch}
88

99
[bumpversion:part:prerel]
1010
optional_value = release
11-
values =
11+
values =
1212
rc
1313
release
1414

client/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cellxgene",
3-
"version": "0.18.0",
3+
"version": "0.19.0",
44
"license": "MIT",
55
"description": "cellxgene is a web application for the interactive exploration of single cell sequence data.",
66
"repository": "https://github.com/chanzuckerberg/cellxgene",

server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33
from server.common.utils.utils import import_plugins
44

5-
__version__ = "0.18.0"
5+
__version__ = "0.19.0"
66
display_version = "cellxgene v" + __version__
77

88
try:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name="cellxgene",
14-
version="0.18.0",
14+
version="0.19.0",
1515
packages=find_packages(),
1616
url="https://github.com/chanzuckerberg/cellxgene",
1717
license="MIT",

0 commit comments

Comments
 (0)