- Initial release
- Adds zhon.cedict package to setup.py
- Allows for mapping between simplified and traditional.
- Adds logging to build_string().
- Adds constants for numbered Pinyin and accented Pinyin.
- Fixes typo in README.rst.
- Complete rewrite that refactors code, renames constants, and improves Pinyin support.
- Adds
zhon.pinyin.punctuation
constant. - Adds
zhon.pinyin.accented_syllable
,zhon.pinyin.accented_word
, andzhon.pinyin.accented_sentence
constants. - Adds
zhon.pinyin.numbered_syllable
,zhon.pinyin.numbered_word
, andzhon.pinyin.numbered_sentence
constants. - Fixes some README.rst typos.
- Clarifies information regarding Traditional and Simplified character constants in README.rst.
- Adds constant short names to README.rst.
- Adds documentation.
- Adds
zhon.cedict.all
constant. - Removes duplicate code ranges from
zhon.hanzi.characters
. - Makes
zhon.hanzi.non_stops
a string containing all non-stops instead of a string containing code ranges. - Removes duplicate letters in
zhon.pinyin.consonants
. - Refactors Pinyin vowels/consonant code.
- Removes the Latin alpha from
zhon.pinyin.vowels
. Fixes #16. - Adds
cjk_ideographs
alias forzhon.hanzi.characters
. - Fixes various typos.
- Removes numbers from Pinyin word constants. Fixes #15.
- Adds lowercase and uppercase constants to
zhon.pinyin
. - Fixes a bug with
zhon.pinyin.sentence
. - Adds
sent
alias forzhon.pinyin.sentence
.
- Fixes bug with
zhon.cedict.all
.
- Adds Ideographic number zero to
zhon.hanzi.characters
. Fixes #17. - Fixes r-suffix bug. Fixes #18.
- Removes duplicate module declarations in documentation.
- Moves tests inside zhon package.
- Adds travis config file.
- Adds Python 3.4 tests to travis and tox.
- Fixes flake8 warnings.
- Adds distutil fallback import statment to setup.py.
- Adds missing hanzi punctuation. Fixes #19.
- Add missing Zhuyin characters. Fixes #23.
- Removes Python 2.7 support
- Bumps minimum support Python to Python 3.7
- Switches to hatch for project management
- Fixes an invalid backslash escape sequence (#34)
- Automatically imports subpackages when importing zhon (#31)
- Updates documentation about combining diacritic marks (#29)