forked from xflr6/gsheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.txt
107 lines (57 loc) · 2.13 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
Changelog
=========
Version 0.6.1 (in development)
------------------------------
Version 0.6
-----------
Drop Python 2 support.
Fix loading of sheets that contain worksheets with titles that are also a valid
reference in A1-notation (add quoting, GH #21).
Drop Python 3.5 support and tag Python 3.9 and 3.10 support.
Changed a few optional flags to keyword-only arguments.
Migrate CI to GitHub actions and extend build matrix.
Version 0.5.1
-------------
Avoid ``file_cache`` import warning with oauth2client >= 4.
Version 0.5
-----------
Add support for API key auth: add optional ``developer_key`` argument to
``Sheets`` constructor and alternate ``Sheets.from_developer_key()``
constructor, see also
https://developers.google.com/sheets/api/guides/authorizing (PR Natarajan
Krishnaswami).
Improve test and doc building config.
Version 0.4.1
-------------
Fix documentation example of ``make_filename``.
Tag Python 3.7 and 3.8 support.
Version 0.4
-----------
Change ``ws.to_frame()`` method to make assignment of worksheet title to ``name``
attribute of ``pandas.DataFrame`` opt-in by ``assign_name`` kwarg.
Version 0.3.2
-------------
Drop Python 3.4 support.
Version 0.3.1
-------------
Add/fix oauth2client dependency (dropped from google-api-python-client).
Drop Python 3.3 support, tag Python 3.7 support.
Version 0.3
-----------
Fetch datetime values as strings instead of days since December 30th 1899
(backwards imcompatible, PR Andrea Nardelli).
Fix handling of empty worksheets (PR lanfon72).
Include LICENSE file in wheel.
Version 0.2
-----------
Make A1 notation slices inclusive (backwards incompatible).
Also support template strings for ``make_filename``.
Change ``make_filename`` callable to a one argument functon given a dictionary.
Add equivalence for ``SpreadSheet``, ``SheetsView``, and ``WorkSheet``.
Include ``get_credentials()`` and ``build_service()`` as low-level api functions.
Add ``no_webserver`` auth for working on remote machines.
Change default filename for client secrets to ``'client_secrets.json'``.
Include docs in source distribution.
Version 0.1
-----------
First release (read-only access).