diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ace94962..8e2d2452 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.0.1 commit = True tag = True diff --git a/PVGeo/__init__.py b/PVGeo/__init__.py index 68c65e61..9c005df5 100644 --- a/PVGeo/__init__.py +++ b/PVGeo/__init__.py @@ -46,7 +46,7 @@ def tryVTK(): __author__ = 'Bane Sullivan' __license__ = 'BSD-3-Clause' __copyright__ = '2018, Bane Sullivan' -__version__ = '2.0.0' +__version__ = '2.0.1' __displayname__ = 'PVGeo' diff --git a/PVPlugins/PVGeo_Filters.py b/PVPlugins/PVGeo_Filters.py index b3c67544..0dc9c4ef 100644 --- a/PVPlugins/PVGeo_Filters.py +++ b/PVPlugins/PVGeo_Filters.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.0' +paraview_plugin_version = '2.0.1' # This is module to import. It provides VTKPythonAlgorithmBase, the base class # for all python-based vtkAlgorithm subclasses in VTK and decorators used to # 'register' the algorithm with ParaView along with information about UI. diff --git a/PVPlugins/PVGeo_GSLib.py b/PVPlugins/PVGeo_GSLib.py index c54be40e..b86677e1 100644 --- a/PVPlugins/PVGeo_GSLib.py +++ b/PVPlugins/PVGeo_GSLib.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.0' +paraview_plugin_version = '2.0.1' # This is module to import. It provides VTKPythonAlgorithmBase, the base class # for all python-based vtkAlgorithm subclasses in VTK and decorators used to # 'register' the algorithm with ParaView along with information about UI. diff --git a/PVPlugins/PVGeo_Grid_Tools.py b/PVPlugins/PVGeo_Grid_Tools.py index 286bac45..d8fc24b6 100644 --- a/PVPlugins/PVGeo_Grid_Tools.py +++ b/PVPlugins/PVGeo_Grid_Tools.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.0' +paraview_plugin_version = '2.0.1' # This is module to import. It provides VTKPythonAlgorithmBase, the base class # for all python-based vtkAlgorithm subclasses in VTK and decorators used to # 'register' the algorithm with ParaView along with information about UI. diff --git a/PVPlugins/PVGeo_Model_Builder.py b/PVPlugins/PVGeo_Model_Builder.py index 654a1d37..1cc919ca 100644 --- a/PVPlugins/PVGeo_Model_Builder.py +++ b/PVPlugins/PVGeo_Model_Builder.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.0' +paraview_plugin_version = '2.0.1' # This is module to import. It provides VTKPythonAlgorithmBase, the base class # for all python-based vtkAlgorithm subclasses in VTK and decorators used to # 'register' the algorithm with ParaView along with information about UI. diff --git a/PVPlugins/PVGeo_Readers.py b/PVPlugins/PVGeo_Readers.py index 71817f24..aa18199e 100644 --- a/PVPlugins/PVGeo_Readers.py +++ b/PVPlugins/PVGeo_Readers.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.0' +paraview_plugin_version = '2.0.1' # This is module to import. It provides VTKPythonAlgorithmBase, the base class # for all python-based vtkAlgorithm subclasses in VTK and decorators used to # 'register' the algorithm with ParaView along with information about UI. diff --git a/PVPlugins/PVGeo_Tunneling.py b/PVPlugins/PVGeo_Tunneling.py index 62a8042a..78e936ff 100644 --- a/PVPlugins/PVGeo_Tunneling.py +++ b/PVPlugins/PVGeo_Tunneling.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.0' +paraview_plugin_version = '2.0.1' # This is module to import. It provides VTKPythonAlgorithmBase, the base class # for all python-based vtkAlgorithm subclasses in VTK and decorators used to # 'register' the algorithm with ParaView along with information about UI. diff --git a/PVPlugins/PVGeo_UBC_Tools.py b/PVPlugins/PVGeo_UBC_Tools.py index 5c2e9b0d..8b152178 100644 --- a/PVPlugins/PVGeo_UBC_Tools.py +++ b/PVPlugins/PVGeo_UBC_Tools.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.0' +paraview_plugin_version = '2.0.1' # This is module to import. It provides VTKPythonAlgorithmBase, the base class # for all python-based vtkAlgorithm subclasses in VTK and decorators used to # 'register' the algorithm with ParaView along with information about UI. diff --git a/PVPlugins/__init__.py b/PVPlugins/__init__.py index a088d560..805bce8a 100644 --- a/PVPlugins/__init__.py +++ b/PVPlugins/__init__.py @@ -15,4 +15,4 @@ __author__ = 'Bane Sullivan' __license__ = 'BSD-3-Clause' __copyright__ = '2018, Bane Sullivan' -__version__ = '2.0.0' +__version__ = '2.0.1' diff --git a/pvmacros/__init__.py b/pvmacros/__init__.py index b1d7212e..f766cf86 100644 --- a/pvmacros/__init__.py +++ b/pvmacros/__init__.py @@ -22,7 +22,7 @@ __author__ = 'Bane Sullivan' __license__ = 'BSD-3-Clause' __copyright__ = '2018, Bane Sullivan' -__version__ = '2.0.0' +__version__ = '2.0.1' __displayname__ = 'ParaView Macros' diff --git a/setup.py b/setup.py index 8092e1ac..7b0f78a3 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ import sys import os -__version__ = '2.0.0' +__version__ = '2.0.1' with open("README.md", "r") as f: long_description = f.read() @@ -24,7 +24,7 @@ 'colour-runner==0.0.5', 'codecov==2.0.15', 'pandas>=0.23.4', - 'mock>=2.0.0', + 'mock>=2.0.1', 'espatools>=0.0.8', 'pyvista>=0.20.1' ]