From 72f2bccb5de3a54a03109b2d80e6fb184727e63d Mon Sep 17 00:00:00 2001 From: Philipp Wiesner Date: Mon, 19 Nov 2018 12:07:57 +0100 Subject: [PATCH 1/3] added MANIFEST for including the LICENSE in future releases and added conda install section to README --- CHANGELOG.rst | 10 +++++++++- MANIFEST.in | 2 ++ README.rst | 4 +++- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 94705b7..b844043 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -20,6 +20,14 @@ Possible types of changes are: Unreleased ---------- + +0.3.0 - 19.11.2018 +------------------ + +Added +''''' +- This is the first release available on `conda-forge `__ + Removed ''''''' - ``delimiter`` property from ``GCSFS`` as it was not fully functional and we currently do not have any use case for it @@ -41,7 +49,7 @@ Changed Removed ''''''' - ``project`` and ``credentials`` properties from ``GCSFS``. Instead, one can now optionally pass a ``client`` of type - `google.cloud.storage.Client `_. + `google.cloud.storage.Client `__. 0.1.6 - 30.10.2018 ------------------ diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..41ab1ac --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include LICENSE +include CHANGELOG.rst diff --git a/README.rst b/README.rst index 8a398d6..e9f7490 100644 --- a/README.rst +++ b/README.rst @@ -48,7 +48,9 @@ Install the latest GCSFS version by running:: $ pip install fs-gcsfs -A conda-forge release is planned for the near future! +Or in case you are using conda:: + + $ conda -c conda-forge install fs-gcsfs Examples From 259818201cc80a6da9ef3c5673cf812f19b3408a Mon Sep 17 00:00:00 2001 From: Philipp Wiesner Date: Mon, 19 Nov 2018 12:42:54 +0100 Subject: [PATCH 2/3] version bump to 0.3.0 --- fs_gcsfs/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs_gcsfs/_version.py b/fs_gcsfs/_version.py index d3ec452..493f741 100644 --- a/fs_gcsfs/_version.py +++ b/fs_gcsfs/_version.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.3.0" From 39227b72af27dbb8731a1a82b0f813f55981d040 Mon Sep 17 00:00:00 2001 From: Philipp Wiesner Date: Tue, 20 Nov 2018 14:25:13 +0100 Subject: [PATCH 3/3] minor fix in README and corrected release date of 0.3.0 --- CHANGELOG.rst | 2 +- README.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b844043..276bb4b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -21,7 +21,7 @@ Unreleased ---------- -0.3.0 - 19.11.2018 +0.3.0 - 20.11.2018 ------------------ Added diff --git a/README.rst b/README.rst index e9f7490..f052d5f 100644 --- a/README.rst +++ b/README.rst @@ -50,7 +50,7 @@ Install the latest GCSFS version by running:: Or in case you are using conda:: - $ conda -c conda-forge install fs-gcsfs + $ conda install -c conda-forge fs-gcsfs Examples