summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorluke@maurits.id.au <luke@maurits.id.au@0f58610c-415a-11de-9c03-5d6cfad8e937>2013-01-22 02:48:25 +0000
committerluke@maurits.id.au <luke@maurits.id.au@0f58610c-415a-11de-9c03-5d6cfad8e937>2013-01-22 02:48:25 +0000
commit3d6c2cdec104e86622ee8c5311c1f91ab22cf7e6 (patch)
tree0e4e6a9fce7e37d9603e3a3afe473fe3ef4d0580 /CHANGELOG
parent8e4b473ff1ea745294ae410f787cd442dbb4b8fd (diff)
downloadpython-prettytable-3d6c2cdec104e86622ee8c5311c1f91ab22cf7e6.tar.gz
Updated CHANGELOG in preparation for 0.7.
git-svn-id: http://prettytable.googlecode.com/svn/trunk@90 0f58610c-415a-11de-9c03-5d6cfad8e937
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG20
1 files changed, 17 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 9347eca..5ef89bf 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,12 +1,26 @@
-########## PrettyTable 0.7 - MM DD, 2012 ##########
-
+########## PrettyTable 0.7 - Jan XX, 2013 ###########
+
+* Improved Python 3 compatibility.
+* Improved support for non-Latin characters. Table widths should
+ now be calculated correctly for tables with e.g. Japanese text.
+* Table contents can now be read in from a .csv file
+* Table contents can now be read in from a DB-API compatible cursor
+* hrules attribute can now be set to HEADER, which draws a rule only
+ under the header row
+* new vrules attribute controls drawing of vertical rules and can
+ be set to FRAME, ALL or NONE
+* new header_style attribute controls formatting of text in table
+ headers and can be set to "cap", "title", "upper", "lower" or None
* Fixed a simple bug regarding validation of max_width (thanks to
Anthony Toole for pointing out this bug and providing a patch).
* Fixed a simple bug regarding initialisation of int_format value
for new tables (thanks to Ingo Schmiegel for pointing out this
bug!)
+* Fixed a bug regarding some constructor keywords, such as "border",
+ being ignored (thanks to Google Code user antonio.s.messina for
+ reporting this bug).
-########## PrettyTable 0.6 - April XX, 2012 ##########
+########## PrettyTable 0.6 - May 5, 2012 ##########
* Code is now simultaneously compatible with Python 2 and 3
* Replaced all setter methods with managed attributes