Skip to content

Commit

Permalink
release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Mar 17, 2017
1 parent 3d3c866 commit 1928291
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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.3:
0.3.3 (2017-03-17):
- change ``network`` to ``NETWORK`` in ``header.py``
- add wildcard support to ``win32.merge``
- change ``Client.check_module_release`` to ``Client.check_package_release``
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.2'
__version__ = '0.3.3'
__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 @@ -126,7 +126,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.2).
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.3).
[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 @@ -677,7 +677,7 @@ def check_package_release(self):
"""Check whether this module has a new release.
>>> client.check_package_release() # doctest: +SKIP
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.2).
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.3).
"""
import json
from distutils.version import StrictVersion
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
# built documents.
#
# The short X.Y version.
version = '0.3.2'
version = '0.3.3'
# The full version, including alpha/beta/rc tags.
release = version

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.2).
[2017-03-11 16:11:47] INFO: You're using the latest release (v0.3.3).
[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.2',
version='0.3.3',

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

0 comments on commit 1928291

Please sign in to comment.