From a7550aec834696877580d91695cf7d04327c3b87 Mon Sep 17 00:00:00 2001 From: burnash Date: Thu, 18 Feb 2021 10:09:00 +0100 Subject: [PATCH] bumped version; updated history --- HISTORY.rst | 34 ++++++++++++++++++++++++++++++++++ LICENSE.txt | 2 +- gspread/__init__.py | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 47b2ce4b6..40ff02f83 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,40 @@ Release History =============== +3.7.0 (2021-02-18) +------------------ + +* Add `Worksheet.insert_note()`, `Worksheet.update_note()`, `Worksheet.clear_note()` (#818 by @lavigne958) + +* Update documentation: oauth2.rst (#836 by @Prometheus3375) + +* Documentation fixes (#838 by @jayeshmanani) + +* Documentation fixes (#845 by @creednaylor) + +* Add `Worksheet.insert_cols()` (#802 by @AlexeyDmitriev) + +* Documentation fixes (#814 by @hkuffel) + +* Update README.md (#811 by @tasawar-hussain) + +* Add `value_render_option` parameter to `Worksheet.get_all_records()` (#776 by @damgad) + +* Remove `requests` from `install_requires` (#801) + +* Simplify implementation of `Worksheet.insert_rows()` (#799 by @AlexeyDmitriev) + +* Add `auth.service_account_from_dict()` (#785 b7 @mahenzon) + +* Fix `ValueRange.from_json()` (#791 by @erakli) + +* Update documentation: oauth2.rst (#794 by @elnjensen) + +* Update documentation: oauth2.rst (#789 by @Takur0) + +* Allow `auth` to be `None`. Fix #773 (#774 by @lepture) + + 3.6.0 (2020-04-30) ------------------ diff --git a/LICENSE.txt b/LICENSE.txt index 806c58e4c..1d956b493 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (C) 2011-2020 Anton Burnashev +Copyright (C) 2011-2021 Anton Burnashev Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/gspread/__init__.py b/gspread/__init__.py index 85797a980..35642383b 100644 --- a/gspread/__init__.py +++ b/gspread/__init__.py @@ -9,7 +9,7 @@ """ -__version__ = '3.6.0' +__version__ = '3.7.0' __author__ = 'Anton Burnashev'