summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluke@maurits.id.au <luke@maurits.id.au@0f58610c-415a-11de-9c03-5d6cfad8e937>2012-06-03 22:15:35 +0000
committerluke@maurits.id.au <luke@maurits.id.au@0f58610c-415a-11de-9c03-5d6cfad8e937>2012-06-03 22:15:35 +0000
commitef7efe740aff841426b5b9c84c779d7224638029 (patch)
treec9736d67f75706b98b56d11aa74b0a6b4df4fe51
parent3c3a5e59ab7ef70e43086ff34c561c6292c02565 (diff)
downloadpython-prettytable-0.6.tar.gz
Updated CHANGELOG for 0.6.1.0.6
git-svn-id: http://prettytable.googlecode.com/svn/branches/0.6@67 0f58610c-415a-11de-9c03-5d6cfad8e937
-rw-r--r--CHANGELOG11
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index d7eb49c..4d1c324 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,14 @@
+########## PrettyTable 0.6.1 - June 03, 2012 ##########
+
+* Unicode encoding scheme can now be set by user
+* __str__ now uses user-specified encoding instead of ASCII. This
+ fixes a bug where tables with non-ASCII characters would print
+ correctly with "print x.get_string()" but not "print x" in 2.x
+ (thanks to Google Code user kevincobain2000 for reporting this
+ bug!)
+* Fixed an incompatibility with 3.0 and 3.1 (html.escape was new
+ in 3.2)
+
########## PrettyTable 0.6 - April 05, 2012 ##########
* Code is now simultaneously compatible with Python 2 and 3