Skip to content

Commit

Permalink
Bump version: 2.0.0 → 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
banesullivan committed Jun 28, 2019
1 parent bcc0106 commit 4ff4595
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 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 = 2.0.0
current_version = 2.0.1
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 @@ -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'


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 = '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.
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 = '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.
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 = '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.
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 = '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.
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 = '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.
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 = '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.
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 = '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.
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__ = '2.0.0'
__version__ = '2.0.1'
2 changes: 1 addition & 1 deletion pvmacros/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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'
]
Expand Down

0 comments on commit 4ff4595

Please sign in to comment.