Skip to content

Commit

Permalink
release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Apr 1, 2017
1 parent 3f38555 commit dbf836c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

0.3.4:
0.4.0 (2017-04-01):
- ``win32.extract_sac``: skip if data not exists
- ``win32.extract_sac``: support multiple processes to speedup, and no longer
return values
Expand Down
2 changes: 1 addition & 1 deletion HinetPy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"""

__title__ = 'HinetPy'
__version__ = '0.3.3'
__version__ = '0.4.0'
__author__ = 'Dongdong Tian'
__license__ = 'MIT'
__copyright__ = 'Copyright 2014-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 @@ -127,7 +127,7 @@ def doctor(self):
""" Doctor does some checks.
>>> client.doctor()
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.3).
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.4.0).
[2017-01-01 00:00:00] INFO: Hi-net web service is NOT updated.
[2017-01-01 00:00:00] INFO: catwin32: /home/user/bin/catwin32.
[2017-01-01 00:00:00] INFO: win2sac_32: /home/user/bin/win2sac_32.
Expand Down Expand Up @@ -690,7 +690,7 @@ def check_package_release(self):
"""Check whether HinetPy has a new release.
>>> client.check_package_release()
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.3).
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.4.0).
"""
from HinetPy import __version__, __title__
from distutils.version import StrictVersion
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.3).
[2017-03-11 16:11:47] INFO: You're using the latest release (v0.4.0).
[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

0 comments on commit dbf836c

Please sign in to comment.