Skip to content

Commit

Permalink
release v0.3.1 due to pypi issues
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Mar 12, 2017
1 parent 0ea371e commit 976935f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changelog
=========

0.3.1 (2017-03-12):
- Fix a technical issue

0.3.0 (2017-03-12):
- rewritten as a Python package

Expand Down
2 changes: 1 addition & 1 deletion HinetPy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

__title__ = 'HinetPy'
__repo__ = 'https://github.com/seisman/HinetPy'
__version__ = '0.3.0'
__version__ = '0.3.1'
__author__ = 'Dongdong Tian'
__license__ = 'MIT'
__copyright__ = 'Copyright 2013-2017 Dongdong Tian'
Expand Down
4 changes: 2 additions & 2 deletions HinetPy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def doctor(self):
""" Doctor does some checks.
>>> client.doctor() # doctest: +SKIP
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.0).
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.1).
[2017-01-01 00:00:00] INFO: Hi-net web service is NOT updated.
[2017-01-01 21:52:09] INFO: catwin32: /home/user/bin/catwin32.
[2017-01-01 21:52:09] INFO: win2sac_32: /home/user/bin/win2sac_32.
Expand Down Expand Up @@ -667,7 +667,7 @@ def check_module_release(self):
"""Check whether this module has a new release.
>>> client.check_module_release() # doctest: +SKIP
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.0).
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.1).
"""
import json
from distutils.version import StrictVersion
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = '0.3.0'
version = '0.3.1'
# The full version, including alpha/beta/rc tags.
release = '0.3.0'
release = '0.3.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/first-try.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Do checks
Let our :meth:`~HinetPy.client.Client.doctor` checks if everything goes right:

>>> client.doctor()
[2017-03-11 16:11:47] INFO: You're using the latest release (v0.3.0).
[2017-03-11 16:11:47] INFO: You're using the latest release (v0.3.1).
[2017-03-11 16:11:46] INFO: Hi-net web service is NOT updated.
[2017-03-11 16:11:47] INFO: catwin32: /home/user/bin/catwin32.
[2017-03-11 16:11:47] INFO: win2sac_32: /home/user/bin/win2sac_32.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='HinetPy',
version='0.3.0',
version='0.3.1',

description='A NIED Hi-net web service client '
'and win32 tools for seismologists.',
Expand Down

0 comments on commit 976935f

Please sign in to comment.