Skip to content

Commit e1930e4

Browse files
committed
Prepare for 1.1.0 release.
1 parent 02b7485 commit e1930e4

File tree

2 files changed

+50
-1
lines changed

2 files changed

+50
-1
lines changed

docs/changes.rst

+49
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,55 @@ Changes
33

44
.. currentmodule:: xlrd
55

6+
1.1.0 (22 August 2017)
7+
----------------------
8+
9+
- Fix for parsing of merged cells containing a single cell reference in xlsx
10+
files.
11+
12+
- Fix for "invalid literal for int() with base 10: 'true'" when reading some
13+
xlsx files.
14+
15+
- Make xldate_as_datetime available to import direct from xlrd.
16+
17+
- Build universal wheels.
18+
19+
- Sphinx documentation.
20+
21+
- Document the problem with XML vulnerabilities in xlsx files and mitigation
22+
measures.
23+
24+
- Fix :class:`NameError` on ``has_defaults is not defined``.
25+
26+
- Some whitespace and code style tweaks.
27+
28+
- Make example in README compatible with both Python 2 and 3.
29+
30+
- Add default value for cells containing errors that causeed parsing of some
31+
xlsx files to fail.
32+
33+
- Add Python 3.6 to the list of supported Python versions, drop 3.3 and 2.6.
34+
35+
- Use generator expressions to avoid unnecessary lists in memory.
36+
37+
- Document unicode encoding used in Excel files from Excel 97 onwards.
38+
39+
- Report hyperlink errors in R1C1 syntax.
40+
41+
Thanks to the following for their contributions to this release:
42+
43+
44+
- Daniel Rech
45+
- Ville Skyttä
46+
- Yegor Yefremov
47+
- Maxime Lorant
48+
- Alexandr N Zamaraev
49+
- Zhaorong Ma
50+
- Jon Dufresne
51+
- Chris McIntyre
52+
53+
- Ivan Masá
54+
655
1.0.0 (2 June 2016)
756
-------------------
857

xlrd/info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__VERSION__ = "1.0.0"
1+
__VERSION__ = "1.1.0"

0 commit comments

Comments
 (0)