diff --git a/HISTORY.rst b/HISTORY.rst index 9a8197c01..daf31fd47 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ Release History =============== +6.0.2 (2024-02-14) +------------------ + +* Fixup gspread client init arguments by @lavigne958 in https://github.com/burnash/gspread/pull/1412 + 6.0.1 (2024-02-06) ------------------ diff --git a/gspread/__init__.py b/gspread/__init__.py index cc3c6289e..cc3739f9c 100644 --- a/gspread/__init__.py +++ b/gspread/__init__.py @@ -1,6 +1,6 @@ """Google Spreadsheets Python API""" -__version__ = "6.0.1" +__version__ = "6.0.2" __author__ = "Anton Burnashev"