Skip to content

Commit

Permalink
release v0.3.2 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 976935f commit 0c93db3
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ __pycache__
build
_build
.cache
dist
HinetPy.egg-info
5 changes: 4 additions & 1 deletion Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
Changelog
=========

0.3.2 (2017-03-12):
- Fix another technical issue related to pypi

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

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.1'
__version__ = '0.3.2'
__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.1).
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.2).
[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.1).
[2017-01-01 00:00:00] INFO: You're using the latest release (v0.3.2).
"""
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.1'
version = '0.3.2'
# The full version, including alpha/beta/rc tags.
release = '0.3.1'
release = version

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

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

0 comments on commit 0c93db3

Please sign in to comment.