diff --git a/docs/source/conf.py b/docs/source/conf.py index 7fb6226318..1943432165 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -46,9 +46,9 @@ copyright = u'2011-2014, Massachusetts Institute of Technology' # built documents. # # The short X.Y version. -version = "0.5" +version = "0.6" # The full version, including alpha/beta/rc tags. -release = "0.5.3" +release = "0.6.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/constants.F90 b/src/constants.F90 index 69954618d0..94edd9d2a2 100644 --- a/src/constants.F90 +++ b/src/constants.F90 @@ -7,8 +7,8 @@ module constants ! OpenMC major, minor, and release numbers integer, parameter :: VERSION_MAJOR = 0 - integer, parameter :: VERSION_MINOR = 5 - integer, parameter :: VERSION_RELEASE = 4 + integer, parameter :: VERSION_MINOR = 6 + integer, parameter :: VERSION_RELEASE = 0 ! Revision numbers for binary files integer, parameter :: REVISION_STATEPOINT = 12 diff --git a/src/utils/setup.py b/src/utils/setup.py index c69e7f6c58..1000e509b3 100644 --- a/src/utils/setup.py +++ b/src/utils/setup.py @@ -3,7 +3,7 @@ from distutils.core import setup setup(name='statepoint', - version='0.5.4', + version='0.6.0', description='OpenMC StatePoint', author='Paul Romano', author_email='paul.k.romano@gmail.com',