diff --git a/fprettify/__init__.py b/fprettify/__init__.py index 40702dd..89e3f4b 100644 --- a/fprettify/__init__.py +++ b/fprettify/__init__.py @@ -1360,7 +1360,7 @@ def run(argv=sys.argv): # pragma: no cover parser.add_argument('-f', '--fortran', type=str, action='append', default=[], help="Overrides default fortran extensions recognized by --recursive. Repeat this option to specify more than one extension.") parser.add_argument('--version', action='version', - version='%(prog)s 0.3.3a2') + version='%(prog)s 0.3.3') args = parser.parse_args(argv[1:]) diff --git a/setup.py b/setup.py index 356c58c..27b6bdf 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ long_description = f.read() setup(name='fprettify', - version='0.3.3a2', + version='0.3.3', description='auto-formatter for modern fortran source code', long_description=long_description, long_description_content_type="text/markdown", @@ -20,7 +20,7 @@ test_suite='fprettify.tests', keywords='fortran format formatting auto-formatter indent', url='https://github.com/pseewald/fprettify', - download_url='https://github.com/pseewald/fprettify/archive/v0.3.3a2.tar.gz', + download_url='https://github.com/pseewald/fprettify/archive/v0.3.3.tar.gz', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',