From b0bc1f6d4e1331e11017eeef5907e9b21ea38f67 Mon Sep 17 00:00:00 2001 From: Kaustav Das Modak Date: Mon, 21 Jan 2013 00:01:35 +0530 Subject: [PATCH] Update ChangeLog and make package version number more Pythonic Other changes: - Bump up package version to 0.1.2 - Fix function reference to fix_string in avro.py --- ChangeLog | 18 ++++++++++++++++++ pyavrophonetic/__init__.py | 3 ++- pyavrophonetic/avro.py | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a54019a..a6178b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,21 @@ +2013-01-20 Kaustav Das Modak + + * tests/test_utils_count.py: Addded tests for utils.count + + * pyavrophonetic/config.py: Switched to simplejson + Used simplejson for faster parsing of json files + + * README.rst (Branch): Updated README with instructions + Added Travis CI badge along with installation and usage instructions + + * .travis.yml (python): Added Travis-CI support + + * tests/test_utils_validate.py: Added tests for utils.validation + + * pyavrophonetic/utils/count.py: Refactored code + + * pyavrophonetic/utils/validate.py: Refactored code + 2013-01-19 Kaustav Das Modak * pyavrophonetic/test/: Added barebones test structure diff --git a/pyavrophonetic/__init__.py b/pyavrophonetic/__init__.py index 019f64c..42c6b02 100755 --- a/pyavrophonetic/__init__.py +++ b/pyavrophonetic/__init__.py @@ -23,4 +23,5 @@ """ -__version__ = '0.1.1' +__version_info__ = ('0', '1', '2') +__version__ = '.'.join(__version_info__) diff --git a/pyavrophonetic/avro.py b/pyavrophonetic/avro.py index b13c3bb..36bbec8 100755 --- a/pyavrophonetic/avro.py +++ b/pyavrophonetic/avro.py @@ -28,4 +28,4 @@ def parse(text): """Parse text input and produce Bengali output""" - return validate.fix_string(text) + return validate.fix_string_case(text)