Skip to content

Commit

Permalink
Merge branch 'release/v1.1.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
tsroten committed May 23, 2016
2 parents f2c149a + 5179a05 commit 5eb0ec4
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@ python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"

install: pip install -r requirements.txt

script: python setup.py test
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,8 @@ v.1.1.4 (2015-01-25)
* Fixes flake8 warnings.
* Adds distutil fallback import statment to setup.py.
* Adds missing hanzi punctuation. Fixes #19.

v.1.1.5 (2016-05-23)
--------------------

* Add missing Zhuyin characters. Fixes #23.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

# General information about the project.
project = 'Zhon'
copyright = '2014, Thomas Roten'
copyright = '2016, Thomas Roten'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -55,7 +55,7 @@
# The short X.Y version.
version = '1.1'
# The full version, including alpha/beta/rc tags.
release = '1.1.4'
release = '1.1.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
setuptools (19.4)
Sphinx (1.3.5)
tox (2.3.1)
virtualenv (14.0.6)
wheel (0.26.0)
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name='zhon',
version='1.1.4',
version='1.1.5',
author='Thomas Roten',
author_email='thomas@roten.us',
url='https://github.com/tsroten/zhon',
Expand All @@ -45,6 +45,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py33,py34,docs
envlist = py27,py33,py34,py35,docs
[testenv]
commands=python setup.py test
[testenv:docs]
Expand Down
2 changes: 1 addition & 1 deletion zhon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Provides constants used in Chinese text processing."""

__version__ = '1.1.4'
__version__ = '1.1.5'
2 changes: 1 addition & 1 deletion zhon/zhuyin.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#: A string containing all Zhuyin characters.
characters = (
'ㄅㄆㄇㄈㄉㄊㄋㄌㄍㄎㄏㄐㄑㄒㄓㄔㄕㄖㄗㄘㄙ'
'ㄚㄛㄝㄜㄞㄟㄠㄡㄢㄣㄤㄥㄦㄧ'
'ㄚㄛㄝㄜㄞㄟㄠㄡㄢㄣㄤㄥㄦㄧㄨㄩㄭ'
)

#: A string containing all Zhuyin tone marks.
Expand Down

0 comments on commit 5eb0ec4

Please sign in to comment.