From fa227b8c25ff78bee3c586bf546c06b78e5ccd85 Mon Sep 17 00:00:00 2001 From: Nithin Murali Date: Mon, 18 Jan 2021 21:31:02 +0100 Subject: [PATCH] version bump 2.0.4 --- README.md | 9 ++++----- pygsheets/__init__.py | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cfa315df..fb8127d0 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,7 @@ Features: * get multiple ranges with get_values_batch ## Updates -* version [2.0.3](https://github.com/nithinmurali/pygsheets/releases/tag/2.0.3) released -* hotfix [2.0.3.1](https://github.com/nithinmurali/pygsheets/releases/tag/2.0.3.1) released +* version [2.0.4](https://github.com/nithinmurali/pygsheets/releases/tag/2.0.4) released ## Installation @@ -35,7 +34,7 @@ If you are installing from pypi please see the docs [here](https://pygsheets.rea #### From GitHub (Recommended) ```sh -pip install https://github.com/nithinmurali/pygsheets/archive/master.zip +pip install https://github.com/nithinmurali/pygsheets/archive/staging.zip ``` @@ -354,7 +353,7 @@ cell = rng[0][1] ### Batching calls -If you are calling a lot of spreadsheet modfication functions (non value update). you can merge them into a single call. +If you are calling a lot of spreadsheet modification functions (non value update). you can merge them into a single call. By doing so all the requests will be merged into a single call. ```python @@ -371,7 +370,7 @@ Batching also happens when you unlink worksheet. But in that case the requests a ## How to Contribute -This library is still in development phase. So there is a lot of work to be done. +This library is still in development phase. * Follow the [Contributing to Open Source](https://guides.github.com/activities/contributing-to-open-source/) Guide. * Branch off of the `staging` branch, and submit Pull Requests back to diff --git a/pygsheets/__init__.py b/pygsheets/__init__.py index d8a36b66..3410d908 100644 --- a/pygsheets/__init__.py +++ b/pygsheets/__init__.py @@ -8,7 +8,7 @@ """ -__version__ = '2.0.3.1' +__version__ = '2.0.4' __author__ = 'Nithin Murali' from pygsheets.authorization import authorize