Skip to content

Commit 3ec635f

Browse files
committed
Bump version number
1 parent 6b2ae9a commit 3ec635f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.13
2+
current_version = 2.0.0
33
commit = True
44
tag = True
55

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
year = u'2015'
2626
author = u'Christer van der Meeren'
2727
copyright = '{0}, {1}'.format(year, author)
28-
version = release = u'1.0.13'
28+
version = release = u'2.0.0'
2929
# on_rtd is whether we are on readthedocs.org
3030
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
3131

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def read(*names, **kwargs):
3434

3535
setup(
3636
name='aacgmv2',
37-
version='1.0.13',
37+
version='2.0.0',
3838
license='MIT',
3939
description='A Python wrapper for AACGM-v2 magnetic coordinates',
4040
long_description='%s\n%s' % (read('README.rst'), re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))),

src/aacgmv2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os as _os
22

3-
__version__ = "1.0.13"
3+
__version__ = "2.0.0"
44

55
# path and filename prefix for the IGRF coefficients
66
AACGM_v2_DAT_PREFIX = _os.path.join(_os.path.realpath(_os.path.dirname(__file__)), 'aacgm_coeffs', 'aacgm_coeffs-12-')

0 commit comments

Comments
 (0)