Skip to content

Commit

Permalink
Remove all non-ASCII characters in CHANGES.rst. Fixes GH-113.
Browse files Browse the repository at this point in the history
Apologies to those whose names are mangled by this change.

It seems that distutils makes it impossible to handle non-ASCII content in a
setup.py long_description in a way that reliably works on Python 3 when the
system encoding is ASCII.
  • Loading branch information
carljm committed Feb 19, 2014
1 parent 6579f5d commit 7222460
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
CHANGES
=======

master (unreleased)
2.0.2 (2014.02.19)
-------------------

* ASCII-fold all non-ASCII characters in changelog. Apologies to those whose
names are mangled by this change. It seems that distutils makes it impossible
to handle non-ASCII content reliably under Python 3 in a setup.py
long_description, when the system encoding may be ASCII. Thanks Simone Dalla
for the report. Fixes GH-113.


2.0.1 (2014.02.11)
-------------------
Expand Down Expand Up @@ -145,7 +151,7 @@ master (unreleased)

- Added ``__len__`` method to ``Choices``. Thanks Ryan Kaskel and James Oakley.

- Fixed ``InheritanceQuerySet`` on Django 1.5. Thanks Javier García Sogo.
- Fixed ``InheritanceQuerySet`` on Django 1.5. Thanks Javier Garcia Sogo.

1.1.0 (2012.04.13)
------------------
Expand Down Expand Up @@ -195,7 +201,7 @@ master (unreleased)
for Django 1.2+. Thanks Jeff Elmore.

- added InheritanceCastManager and InheritanceCastQuerySet, to allow bulk
casting of a queryset to child types. Thanks Gregor Müllegger.
casting of a queryset to child types. Thanks Gregor Muellegger.

0.5.0 (2010.09.24)
------------------
Expand Down

0 comments on commit 7222460

Please sign in to comment.