From c6d642b4a2688df5855b06ebb0403f1806805fbb Mon Sep 17 00:00:00 2001 From: Chris Withers Date: Fri, 11 Dec 2020 09:51:16 +0000 Subject: [PATCH] Prepare for 2.0.0 release --- CHANGELOG.rst | 24 ++++++++++++++++++++++++ xlrd/info.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 78cc368..e2a5514 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,30 @@ Changes ======= +2.0.0 (11 December 2020) +------------------------ + +- Remove support for anything other than ``.xls`` files. +- Remove support for ``psyco``. +- Change the default encoding used when no ``CODEPAGE`` record can be found + from ``ascii`` to ``iso-8859-1``. +- Add support for iterating over :class:`~xlrd.book.Book` objects. +- Add support for item access from :class:`~xlrd.book.Book` objects, + where integer indices and string sheet names are supported. +- Non-unicode spaces are now stripped from the "last author" information. +- Workbook corruption errors can now be ignored using the + ``ignore_workbook_corruption`` option to :class:`~xlrd.open_workbook`. +- Handle ``WRITEACCESS`` records with invalid trailing characters. +- Officially support Python 3.8 and 3.9. + +Thanks to the following for their contributions to this release: + +- Jon Dufresne +- Tore Lundqvist +- nayyarv +- Michael Davis +- skonik + 1.2.0 (15 December 2018) ------------------------ diff --git a/xlrd/info.py b/xlrd/info.py index f63f017..9a72007 100644 --- a/xlrd/info.py +++ b/xlrd/info.py @@ -1 +1 @@ -__version__ = __VERSION__ = "1.2.0" +__version__ = __VERSION__ = "2.0.0"