From c9b2cb5fabb688b24919f38cab7a7ce34c262ce9 Mon Sep 17 00:00:00 2001 From: Alexandre Lavigne Date: Sun, 22 Oct 2023 20:32:00 +0200 Subject: [PATCH] Release v5.12.0 Signed-off-by: Alexandre Lavigne --- HISTORY.rst | 10 ++++++++++ gspread/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index d8b77a328..3eeb5b5e4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,16 @@ Release History =============== +5.12.0 (2023-10-22) +------------------- + +* feature -- adding `worksheet.get_records` to get specific row ranges by @AndrewBasem1 in https://github.com/burnash/gspread/pull/1301 +* Fix list_spreadsheet_files return value by @mephinet in https://github.com/burnash/gspread/pull/1308 +* Fix warning message for `worksheet.update` method by @ksj20 in https://github.com/burnash/gspread/pull/1312 +* change lambda function to dict (fix pyupgrade issue) by @alifeee in https://github.com/burnash/gspread/pull/1319 +* allows users to silence deprecation warnings by @lavigne958 in https://github.com/burnash/gspread/pull/1324 +* Add `maintain_size` to keep asked for size in `get`, `get_values` by @alifeee in https://github.com/burnash/gspread/pull/1305 + 5.11.3 (2023-09-29) ------------------- diff --git a/gspread/__init__.py b/gspread/__init__.py index 7cf975eb8..b7422cc55 100644 --- a/gspread/__init__.py +++ b/gspread/__init__.py @@ -1,6 +1,6 @@ """Google Spreadsheets Python API""" -__version__ = "5.11.3" +__version__ = "5.12.0" __author__ = "Anton Burnashev"