diff --git a/CHANGES b/CHANGES index 1373141..566aaee 100644 --- a/CHANGES +++ b/CHANGES @@ -3,8 +3,10 @@ CHANGES # 0.6.42 -- added parsing for WX (positionless and in comment) +- fix rounding error in base91.from_decimal +- added py35, pypy, pypy3 to travis - fix exception due to EUC-TW encoding, #11 +- added parsing for WX (positionless and in comment) # LOTS OF MINOR STUFF diff --git a/aprslib/__init__.py b/aprslib/__init__.py index a06a3bc..8d80278 100644 --- a/aprslib/__init__.py +++ b/aprslib/__init__.py @@ -50,7 +50,7 @@ from datetime import date as _date __date__ = str(_date.today()) del _date -__version__ = "0.6.41" +__version__ = "0.6.42" __author__ = "Rossen Georgiev" __all__ = ['IS', 'parse', 'passcode']