From 1928291b969ecfd6c6dfc91e77de983b5e6edca2 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Fri, 17 Mar 2017 18:19:39 +0800 Subject: [PATCH] release 0.3.3 --- Changelog.rst | 2 +- HinetPy/__init__.py | 2 +- HinetPy/client.py | 4 ++-- docs/conf.py | 2 +- docs/first-try.rst | 2 +- setup.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 5650bf11..f64b5285 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -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`` diff --git a/HinetPy/__init__.py b/HinetPy/__init__.py index 18e29e5b..234ac235 100644 --- a/HinetPy/__init__.py +++ b/HinetPy/__init__.py @@ -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' diff --git a/HinetPy/client.py b/HinetPy/client.py index ab3642fe..83d995a2 100644 --- a/HinetPy/client.py +++ b/HinetPy/client.py @@ -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. @@ -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 diff --git a/docs/conf.py b/docs/conf.py index 46341d29..606cd741 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 diff --git a/docs/first-try.rst b/docs/first-try.rst index 036b866c..0482c12c 100644 --- a/docs/first-try.rst +++ b/docs/first-try.rst @@ -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. diff --git a/setup.py b/setup.py index 3ef62578..12f78166 100644 --- a/setup.py +++ b/setup.py @@ -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.',