Skip to content

Commit

Permalink
Set version to 1.0.22
Browse files Browse the repository at this point in the history
Traditionally Python Unidecode followed the versioning scheme used by the
original Perl module. This doesn't make sense any more because:

1) Perl Text::Unidecode itself switched to a different versioning scheme long ago
http://search.cpan.org/~sburke/Text-Unidecode-1.30/

2) Python Unidecode has now sufficiently diverged from Perl version so that
matched version numbers are no longer useful,

3) setuptools (>= 8) began mangling version numbers, yielding confusion because
Unidecode 0.04.x now sometimes appears as 0.4.x
pypa/setuptools#302
  • Loading branch information
avian2 committed Jan 5, 2018
1 parent b7b19ed commit 9b06ebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def get_long_description():

setup(
name='Unidecode',
version='0.04.21',
version='1.0.22',
description='ASCII transliterations of Unicode text',
license='GPL',
long_description=get_long_description(),
Expand Down

0 comments on commit 9b06ebd

Please sign in to comment.