Skip to content

Commit

Permalink
Bump version: 1.2.0b → 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
banesullivan committed Jan 16, 2019
1 parent 0823e0d commit 0ce6c20
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.0b
current_version = 1.2.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion PVGeo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'


Expand Down
2 changes: 1 addition & 1 deletion PVPlugins/PVGeo_Filters.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion PVPlugins/PVGeo_GSLib.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion PVPlugins/PVGeo_Grid_Tools.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion PVPlugins/PVGeo_Model_Builder.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion PVPlugins/PVGeo_Readers.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion PVPlugins/PVGeo_Tunneling.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion PVPlugins/PVGeo_UBC_Tools.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion PVPlugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
__author__ = 'Bane Sullivan'
__license__ = 'BSD-3-Clause'
__copyright__ = '2018, Bane Sullivan'
__version__ = '1.2.0b'
__version__ = '1.2.0'
2 changes: 1 addition & 1 deletion pvmacros/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 0ce6c20

Please sign in to comment.