From 9cc862bc24f61de763944c59b2e1d270ef3b48cf Mon Sep 17 00:00:00 2001 From: Alexandre Lavigne Date: Mon, 4 Sep 2023 15:16:10 +0200 Subject: [PATCH] 5.11.0 release --- HISTORY.rst | 16 +++++++++++++++- gspread/__init__.py | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 5fbfb1eba..a7c7bc947 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,22 @@ Release History =============== +5.11.0 (2023-09-04) +------------------- + +* add docs/build to .gitignore by @alifeee in https://github.com/burnash/gspread/pull/1246 +* add release process to CONTRIBUTING.md by @alifeee in https://github.com/burnash/gspread/pull/1247 +* Update/clean readme badges by @lavigne958 in https://github.com/burnash/gspread/pull/1251 +* add test_fill_gaps and docstring for fill_gaps by @alifeee in https://github.com/burnash/gspread/pull/1256 +* Remove API calls from `creationTime`/`lastUpdateTime` by @alifeee in https://github.com/burnash/gspread/pull/1255 +* Fix Worksheet ID Type Inconsistencies by @FlantasticDan in https://github.com/burnash/gspread/pull/1269 +* Add `column_count` prop as well as `col_count` by @alifeee in https://github.com/burnash/gspread/pull/1274 +* Add required kwargs with no default value by @lavigne958 in https://github.com/burnash/gspread/pull/1271 +* Add deprecation warnings for colors by @alifeee in https://github.com/burnash/gspread/pull/1278 +* Add better Exceptions on opening spreadsheets by @alifeee in https://github.com/burnash/gspread/pull/1277 + 5.10.0 (2023-06-29) ------------------- +------------------- * Fix rows_auto_resize in worksheet.py by removing redundant self by @MagicMc23 in https://github.com/burnash/gspread/pull/1194 * Add deprecation warning for future release 6.0.x by @lavigne958 in https://github.com/burnash/gspread/pull/1195 diff --git a/gspread/__init__.py b/gspread/__init__.py index a6e738c5e..a90c86f58 100644 --- a/gspread/__init__.py +++ b/gspread/__init__.py @@ -1,6 +1,6 @@ """Google Spreadsheets Python API""" -__version__ = "5.10.0" +__version__ = "5.11.0" __author__ = "Anton Burnashev"