HISTORY.rst 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. History
  2. -------
  3. 0.9.11 (2011-06-30)
  4. +++++++++++++++++++
  5. * Bugfixes
  6. 0.9.10 (2011-06-22)
  7. +++++++++++++++++++
  8. * Bugfixes
  9. 0.9.9 (2011-06-21)
  10. ++++++++++++++++++
  11. * Dataset API Changes
  12. * ``stack_rows`` => ``stack``, ``stack_columns`` => ``stack_cols``
  13. * column operations have their own methods now (``apend_col``, ``insert_col``)
  14. * List-style ``pop()``
  15. * Redis-style ``rpush``, ``lpush``, ``rpop``, ``lpop``, ``rpush_col``, and ``lpush_col``
  16. 0.9.8 (2011-05-22)
  17. ++++++++++++++++++
  18. * OpenDocument Spreadsheet support (.ods)
  19. * Full Unicode TSV support
  20. 0.9.7 (2011-05-12)
  21. ++++++++++++++++++
  22. * Full XLSX Support!
  23. * Pickling Bugfix
  24. * Compat Module
  25. 0.9.6 (2011-05-12)
  26. ++++++++++++++++++
  27. * ``seperators`` renamed to ``separators``
  28. * Full unicode CSV support
  29. 0.9.5 (2011-03-24)
  30. ++++++++++++++++++
  31. * Python 3.1, Python 3.2 Support (same code base!)
  32. * Formatter callback support
  33. * Various bug fixes
  34. 0.9.4 (2011-02-18)
  35. ++++++++++++++++++
  36. * Python 2.5 Support!
  37. * Tox Testing for 2.5, 2.6, 2.7
  38. * AnyJSON Integrated
  39. * OrderedDict support
  40. * Caved to community pressure (spaces)
  41. 0.9.3 (2011-01-31)
  42. ++++++++++++++++++
  43. * Databook duplication leak fix.
  44. * HTML Table output.
  45. * Added column sorting.
  46. 0.9.2 (2010-11-17)
  47. ++++++++++++++++++
  48. * Transpose method added to Datasets.
  49. * New frozen top row in Excel output.
  50. * Pickling support for Datasets and Rows.
  51. * Support for row/column stacking.
  52. 0.9.1 (2010-11-04)
  53. ++++++++++++++++++
  54. * Minor reference shadowing bugfix.
  55. 0.9.0 (2010-11-04)
  56. ++++++++++++++++++
  57. * Massive documentation update!
  58. * Tablib.org!
  59. * Row tagging and Dataset filtering!
  60. * Column insert/delete support
  61. * Column append API change (header required)
  62. * Internal Changes (Row object and use thereof)
  63. 0.8.5 (2010-10-06)
  64. ++++++++++++++++++
  65. * New import system. All dependencies attempt to load from site-packages,
  66. then fallback on tenderized modules.
  67. 0.8.4 (2010-10-04)
  68. ++++++++++++++++++
  69. * Updated XLS output: Only wrap if '\\n' in cell.
  70. 0.8.3 (2010-10-04)
  71. ++++++++++++++++++
  72. * Ability to append new column passing a callable
  73. as the value that will be applied to every row.
  74. 0.8.2 (2010-10-04)
  75. ++++++++++++++++++
  76. * Added alignment wrapping to written cells.
  77. * Added separator support to XLS.
  78. 0.8.1 (2010-09-28)
  79. ++++++++++++++++++
  80. * Packaging Fix
  81. 0.8.0 (2010-09-25)
  82. ++++++++++++++++++
  83. * New format plugin system!
  84. * Imports! ELEGANT Imports!
  85. * Tests. Lots of tests.
  86. 0.7.1 (2010-09-20)
  87. ++++++++++++++++++
  88. * Reverting methods back to properties.
  89. * Windows bug compensated in documentation.
  90. 0.7.0 (2010-09-20)
  91. ++++++++++++++++++
  92. * Renamed DataBook Databook for consistency.
  93. * Export properties changed to methods (XLS filename / StringIO bug).
  94. * Optional Dataset.xls(path='filename') support (for writing on windows).
  95. * Added utf-8 on the worksheet level.
  96. 0.6.4 (2010-09-19)
  97. ++++++++++++++++++
  98. * Updated unicode export for XLS.
  99. * More exhaustive unit tests.
  100. 0.6.3 (2010-09-14)
  101. ++++++++++++++++++
  102. * Added Dataset.append() support for columns.
  103. 0.6.2 (2010-09-13)
  104. ++++++++++++++++++
  105. * Fixed Dataset.append() error on empty dataset.
  106. * Updated Dataset.headers property w/ validation.
  107. * Added Testing Fixtures.
  108. 0.6.1 (2010-09-12)
  109. ++++++++++++++++++
  110. * Packaging hotfixes.
  111. 0.6.0 (2010-09-11)
  112. ++++++++++++++++++
  113. * Public Release.
  114. * Export Support for XLS, JSON, YAML, and CSV.
  115. * DataBook Export for XLS, JSON, and YAML.
  116. * Python Dict Property Support.