From 0c85a30fbf11fbe744b25ed708888148d206b36e Mon Sep 17 00:00:00 2001 From: alifeee Date: Thu, 3 Oct 2024 15:15:15 +0100 Subject: [PATCH] Release v6.1.3 --- HISTORY.rst | 10 +++++++++- gspread/__init__.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 083ee684..2c142506 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,14 @@ Release History =============== +6.1.3 (2024-10-03) +------------------ + +* ignore jinja CVE by @lavigne958 in https://github.com/burnash/gspread/pull/1481 +* Remove passing exception as args to super in APIError by @mike-flowers-airbnb in https://github.com/burnash/gspread/pull/1477 +* better handler API error parsing. by @lavigne958 in https://github.com/burnash/gspread/pull/1510 +* Add test on receiving an invalid JSON in the APIError exception handler. by @lavigne958 in https://github.com/burnash/gspread/pull/1512 + 6.1.2 (2024-05-17) ------------------ @@ -63,7 +71,7 @@ Release History 6.0.0 (2024-01-28) ------------------ - +New Contributor * Remove deprecated method delete_row by @cgkoutzigiannis in https://github.com/burnash/gspread/pull/1062 * Initial typing in client.py by @OskarBrzeski in https://github.com/burnash/gspread/pull/1159 * Split client http client by @lavigne958 in https://github.com/burnash/gspread/pull/1190 diff --git a/gspread/__init__.py b/gspread/__init__.py index 8e52723f..c4170480 100644 --- a/gspread/__init__.py +++ b/gspread/__init__.py @@ -1,6 +1,6 @@ """Google Spreadsheets Python API""" -__version__ = "6.1.2" +__version__ = "6.1.3" __author__ = "Anton Burnashev"