From f0a877917e8682d375169dbac7556afb99cb2ae0 Mon Sep 17 00:00:00 2001 From: Alexandre Lavigne Date: Tue, 6 Feb 2024 14:55:12 +0100 Subject: [PATCH] Release v6.0.1 closes #1400 Signed-off-by: Alexandre Lavigne --- HISTORY.rst | 13 +++++++++++++ gspread/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index f1edd40b7..9a8197c01 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,19 @@ Release History =============== +6.0.1 (2024-02-06) +------------------ + +* Allow client to use external Session object by @lavigne958 in https://github.com/burnash/gspread/pull/1384 +* Remove-py-3.7-support by @alifeee in https://github.com/burnash/gspread/pull/1396 +* bugfix/client export by @lavigne958 in https://github.com/burnash/gspread/pull/1392 +* Fix oauth flow typo by @alifeee in https://github.com/burnash/gspread/pull/1397 +* check oauth creds type using `isinstance` by @alifeee in https://github.com/burnash/gspread/pull/1398 +* Fix type hints at find method in worksheet.py by @deftfitf in https://github.com/burnash/gspread/pull/1407 +* Fixup get empty cell value is `None` by @lavigne958 in https://github.com/burnash/gspread/pull/1404 +* Fix missing attribute `spreadsheet` in `Worksheet`. by @lavigne958 in https://github.com/burnash/gspread/pull/1402 +* update migration guide by @alifeee in https://github.com/burnash/gspread/pull/1409 + 6.0.0 (2024-01-28) ------------------ diff --git a/gspread/__init__.py b/gspread/__init__.py index 5742c68bc..cc3c6289e 100644 --- a/gspread/__init__.py +++ b/gspread/__init__.py @@ -1,6 +1,6 @@ """Google Spreadsheets Python API""" -__version__ = "6.0.0" +__version__ = "6.0.1" __author__ = "Anton Burnashev"