Skip to content

Commit c6d642b

Browse files
committed
Prepare for 2.0.0 release
1 parent e61d8ed commit c6d642b

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.rst

+24
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
11
Changes
22
=======
33

4+
2.0.0 (11 December 2020)
5+
------------------------
6+
7+
- Remove support for anything other than ``.xls`` files.
8+
- Remove support for ``psyco``.
9+
- Change the default encoding used when no ``CODEPAGE`` record can be found
10+
from ``ascii`` to ``iso-8859-1``.
11+
- Add support for iterating over :class:`~xlrd.book.Book` objects.
12+
- Add support for item access from :class:`~xlrd.book.Book` objects,
13+
where integer indices and string sheet names are supported.
14+
- Non-unicode spaces are now stripped from the "last author" information.
15+
- Workbook corruption errors can now be ignored using the
16+
``ignore_workbook_corruption`` option to :class:`~xlrd.open_workbook`.
17+
- Handle ``WRITEACCESS`` records with invalid trailing characters.
18+
- Officially support Python 3.8 and 3.9.
19+
20+
Thanks to the following for their contributions to this release:
21+
22+
- Jon Dufresne
23+
- Tore Lundqvist
24+
- nayyarv
25+
- Michael Davis
26+
- skonik
27+
428
1.2.0 (15 December 2018)
529
------------------------
630

xlrd/info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = __VERSION__ = "1.2.0"
1+
__version__ = __VERSION__ = "2.0.0"

0 commit comments

Comments
 (0)