From 0ce6c202211bd55abf55bcc92c7e7fbe8f53d4de Mon Sep 17 00:00:00 2001 From: Bane Sullivan Date: Wed, 16 Jan 2019 00:50:10 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.2.0b=20=E2=86=92=201.2.0?= 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 de3e6240..2d317500 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.0b +current_version = 1.2.0 commit = True tag = True diff --git a/PVGeo/__init__.py b/PVGeo/__init__.py index 0292df3a..ef3a19b7 100644 --- a/PVGeo/__init__.py +++ b/PVGeo/__init__.py @@ -45,7 +45,7 @@ def tryVTK(): __author__ = 'Bane Sullivan' __license__ = 'BSD-3-Clause' __copyright__ = '2018, Bane Sullivan' -__version__ = '1.2.0b' +__version__ = '1.2.0' __displayname__ = 'PVGeo' diff --git a/PVPlugins/PVGeo_Filters.py b/PVPlugins/PVGeo_Filters.py index 5d986626..ef96da27 100644 --- a/PVPlugins/PVGeo_Filters.py +++ b/PVPlugins/PVGeo_Filters.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '1.2.0b' +paraview_plugin_version = '1.2.0' # 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 2ec60a3b..7a07d825 100644 --- a/PVPlugins/PVGeo_GSLib.py +++ b/PVPlugins/PVGeo_GSLib.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '1.2.0b' +paraview_plugin_version = '1.2.0' # 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 5f691f01..b401f1fc 100644 --- a/PVPlugins/PVGeo_Grid_Tools.py +++ b/PVPlugins/PVGeo_Grid_Tools.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '1.2.0b' +paraview_plugin_version = '1.2.0' # 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 244656cc..8d92f4bc 100644 --- a/PVPlugins/PVGeo_Model_Builder.py +++ b/PVPlugins/PVGeo_Model_Builder.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '1.2.0b' +paraview_plugin_version = '1.2.0' # 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 8bacb4b3..968112db 100644 --- a/PVPlugins/PVGeo_Readers.py +++ b/PVPlugins/PVGeo_Readers.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '1.2.0b' +paraview_plugin_version = '1.2.0' # 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 565abe3a..94f66232 100644 --- a/PVPlugins/PVGeo_Tunneling.py +++ b/PVPlugins/PVGeo_Tunneling.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '1.2.0b' +paraview_plugin_version = '1.2.0' # 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 863a45ab..18532ce0 100644 --- a/PVPlugins/PVGeo_UBC_Tools.py +++ b/PVPlugins/PVGeo_UBC_Tools.py @@ -1,4 +1,4 @@ -paraview_plugin_version = '1.2.0b' +paraview_plugin_version = '1.2.0' # 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 9503e5f8..fbcb282b 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__ = '1.2.0b' +__version__ = '1.2.0' diff --git a/pvmacros/__init__.py b/pvmacros/__init__.py index a3704d16..e4b8ff2d 100644 --- a/pvmacros/__init__.py +++ b/pvmacros/__init__.py @@ -5,7 +5,7 @@ __author__ = 'Bane Sullivan' __license__ = 'BSD-3-Clause' __copyright__ = '2018, Bane Sullivan' -__version__ = '1.2.0b' +__version__ = '1.2.0' __displayname__ = 'ParaView Macros' diff --git a/setup.py b/setup.py index 4051a410..635c01e6 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ import sys import os -__version__ = '1.2.0b' +__version__ = '1.2.0' with open("README.md", "r") as f: long_description = f.read()