Skip to content

Commit b4fa326

Browse files
committed
bumped version; updated history
1 parent c527efa commit b4fa326

File tree

2 files changed

+50
-2
lines changed

2 files changed

+50
-2
lines changed

HISTORY.rst

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,58 @@
11
Release History
22
===============
33

4+
3.4.0 (2020-04-05)
5+
------------------
6+
7+
* Remove `oauth2client` in favor of `google-auth` #472, #529 (#637 by @BigHeadGeorge)
8+
* Convert `oauth2client` credentials to `google-auth` (#711 by @aiguofer)
9+
* Remove unnecessary `login()` from `gspread.authorize`
10+
11+
* Fix sheet name quoting issue (#554, #636, #716):
12+
* Add quotes to worksheet title for get_all_values (#640 by @grlbrwrg, #717 by @zynaxsoft)
13+
* Escaping title containing single quotes with double quotes (#730 by @vijay-shanker)
14+
* Use `utils.absolute_range_name()` to handle range names (#748)
15+
16+
* Fix `numericise()`: add underscores test to work in python2 and <python3.6 (#622 by @epicfaace)
17+
18+
* Add `supportsAllDrives` to Drive API requests (#709 by @justinr1234)
19+
20+
* Add `Worksheet.merge_cells()` (#713 by @lavigne958)
21+
* Improve `Worksheet.merge_cells()` and add `merge_type` parameter (#742 by @aiguofer)
22+
23+
* Add `Worksheet.sort()` (#639 by @kirillgashkov)
24+
25+
* Add ability to reorder worksheets #570 (#571 by @robin900)
26+
* Add `Spreadsheet.reorder_worksheets()`
27+
* Add `Worksheet.update_index()`
28+
29+
* Add `test_update_cell_objects` (#698 by @ogroleg)
30+
31+
* Add `Worksheet.append_rows()` (#556 by @martinwarby, #694 by @fabytm)
32+
33+
* Add `Worksheet.delete_rows()` (#615 by @deverlex)
34+
35+
* Add Python 3.8 to Travis CI (#738 by @artemrys)
36+
37+
* Speed up `Client.open()` by querying files by title in Google Drive (#684 by @aiguofer)
38+
39+
* Add `freeze`, `set_basic_filter` and `clear_basic_filter` methods to `Worksheet` (#574 by @aiguofer)
40+
41+
* Use Drive API v3 for creating and deleting spreadsheets (#573 by @aiguofer)
42+
43+
* Implement `value_render_option` in `get_all_values` (#648 by @mklaber)
44+
45+
* Set position of a newly added worksheet (#688 by @djmgit)
46+
* Add url properties for `Spreadsheet` and `Worksheet` (#725 by @CrossNox)
47+
48+
* Update docs: "APIs & auth" menu deprecation, remove outdated images in oauth2.rst (#706 by @manasouza)
49+
50+
451
3.3.1 (2020-04-01)
552
------------------
653

7-
* Support old and new collections.abc.Sequence (#745 by @timgates42)
54+
* Support old and new collections.abc.Sequence in `utils` (#745 by @timgates42)
55+
856

957
3.3.0 (2020-03-12)
1058
------------------

gspread/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"""
1010

1111

12-
__version__ = '3.3.1'
12+
__version__ = '3.4.0'
1313
__author__ = 'Anton Burnashev'
1414

1515

0 commit comments

Comments
 (0)