From 0cc3032d0428c0081accf140846d18e209162714 Mon Sep 17 00:00:00 2001 From: banesullivan Date: Fri, 30 Aug 2019 10:22:15 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.3=20=E2=86=92=202.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- PVGeo/__init__.py | 2 +- PVPlugins/PVGeo_Filters.py | 2 +- PVPlugins/PVGeo_GSLib.py | 2 +- PVPlugins/PVGeo_Grid_Tools.py | 2 +- PVPlugins/PVGeo_Model_Builder.py | 2 +- PVPlugins/PVGeo_Readers.py | 2 +- PVPlugins/PVGeo_Tunneling.py | 2 +- PVPlugins/PVGeo_UBC_Tools.py | 2 +- PVPlugins/__init__.py | 2 +- pvmacros/__init__.py | 2 +- setup.py | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f4e90c1a..8fd422e9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.3 +current_version = 2.0.4 commit = True tag = True diff --git a/PVGeo/__init__.py b/PVGeo/__init__.py index 2245f101..957df301 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.3' +__version__ = '2.0.4' __displayname__ = 'PVGeo' diff --git a/PVPlugins/PVGeo_Filters.py b/PVPlugins/PVGeo_Filters.py index cd5b8bca..c5915618 100644 --- a/PVPlugins/PVGeo_Filters.py +++ b/PVPlugins/PVGeo_Filters.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.3' +paraview_plugin_version = '2.0.4' # 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 7be037d3..b2a083aa 100644 --- a/PVPlugins/PVGeo_GSLib.py +++ b/PVPlugins/PVGeo_GSLib.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.3' +paraview_plugin_version = '2.0.4' # 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 651b5c88..5f8c751e 100644 --- a/PVPlugins/PVGeo_Grid_Tools.py +++ b/PVPlugins/PVGeo_Grid_Tools.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.3' +paraview_plugin_version = '2.0.4' # 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 fe2619f6..e930f7e5 100644 --- a/PVPlugins/PVGeo_Model_Builder.py +++ b/PVPlugins/PVGeo_Model_Builder.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.3' +paraview_plugin_version = '2.0.4' # 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 76ec05f6..ceae417d 100644 --- a/PVPlugins/PVGeo_Readers.py +++ b/PVPlugins/PVGeo_Readers.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.3' +paraview_plugin_version = '2.0.4' # 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 d4a4981e..8f104248 100644 --- a/PVPlugins/PVGeo_Tunneling.py +++ b/PVPlugins/PVGeo_Tunneling.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.3' +paraview_plugin_version = '2.0.4' # 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 3a7e565a..79e02e78 100644 --- a/PVPlugins/PVGeo_UBC_Tools.py +++ b/PVPlugins/PVGeo_UBC_Tools.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '2.0.3' +paraview_plugin_version = '2.0.4' # 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 bfa49bc1..f7331a6d 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.3' +__version__ = '2.0.4' diff --git a/pvmacros/__init__.py b/pvmacros/__init__.py index 0261f1c6..e7463719 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.3' +__version__ = '2.0.4' __displayname__ = 'ParaView Macros' diff --git a/setup.py b/setup.py index 428a6cfd..38c32f7d 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ import sys import os -__version__ = '2.0.3' +__version__ = '2.0.4' with open("README.md", "r") as f: long_description = f.read()