diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 94705b7..276bb4b 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -20,6 +20,14 @@ Possible types of changes are:
Unreleased
----------
+
+0.3.0 - 20.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 7e0a6f7..d9d6850 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 install -c conda-forge fs-gcsfs
Examples
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"