From 7939d23fec518f986a81534bb2a734e459527066 Mon Sep 17 00:00:00 2001 From: "James A. Bednar" Date: Thu, 8 Mar 2018 02:54:21 -0800 Subject: [PATCH] Bumped version to 0.9.8 --- conda.recipe/meta.yaml | 2 +- pyviz/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index cc9620b5..5800d19a 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: pyviz - version: 0.9.7 + version: 0.9.8 source: path: .. diff --git a/pyviz/__init__.py b/pyviz/__init__.py index 16cd5be0..d020a5b1 100644 --- a/pyviz/__init__.py +++ b/pyviz/__init__.py @@ -24,4 +24,4 @@ from holoviews import help # noqa (API import) -__version__ = pm.Version(release=(0,9,7), fpath=__file__, commit="$Format:%h$", reponame='pyviz') +__version__ = pm.Version(release=(0,9,8), fpath=__file__, commit="$Format:%h$", reponame='pyviz') diff --git a/setup.py b/setup.py index 5c48dd81..7f4ab6e5 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup_args = dict( name='pyviz', - version="0.9.7", + version="0.9.8", description='How to solve visualization problems with Python tools.', long_description=open('README.rst').read() if os.path.isfile('README.rst') else 'Consult README.rst', author= "PyViz developers",