From fd9e0fe16f93ad493c49b293995369ba98b836d3 Mon Sep 17 00:00:00 2001 From: Alexandre Lavigne Date: Sun, 31 Dec 2023 13:43:41 +0100 Subject: [PATCH] Release v5.12.4 Signed-off-by: Alexandre Lavigne --- HISTORY.rst | 6 ++++++ gspread/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index b5da9bda9..898f2cbbc 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ Release History =============== +5.12.4.(2023-12-31) +------------------- + +* Bump actions/setup-python from 4 to 5 by @dependabot in https://github.com/burnash/gspread/pull/1370 +* Fixed default value of merge_type parameter in merge_cells function docstring. by @neolooong in https://github.com/burnash/gspread/pull/1373 + 5.12.3 (2023-12-15) ------------------- diff --git a/gspread/__init__.py b/gspread/__init__.py index 16d7f8a76..4733cb6be 100644 --- a/gspread/__init__.py +++ b/gspread/__init__.py @@ -1,6 +1,6 @@ """Google Spreadsheets Python API""" -__version__ = "5.12.3" +__version__ = "5.12.4" __author__ = "Anton Burnashev"