Skip to content

Commit 1d726ff

Browse files
authored
Merge pull request #53 from descarteslabs/release/v0.1.6
Updating to 0.1.6
2 parents 91606a3 + bff438f commit 1d726ff

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

descarteslabs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# flake8: noqa
1616

17-
__version__ = "0.1.4"
17+
__version__ = "0.1.6"
1818
from .auth import Auth
1919
descartes_auth = Auth()
2020

docs/quickstart.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ Install the latest client library via :command:`pip`::
1515

1616
The latest development version can always be found on
1717
`GitHub <https://github.com/descarteslabs/descarteslabs-python>`_.
18+
It can be installed via :command:`pip`::
19+
20+
$ pip install -U git+https://github.com/descarteslabs/descarteslabs-python.git
1821

1922
Configuration
2023
-------------
@@ -38,4 +41,4 @@ After the credentials are correctly configured, you should be able to easily acc
3841

3942
>>> import descarteslabs as dl
4043
>>> dl.places.find('illinois')
41-
[{'name': 'Illinois', 'placetype': 'region', ...}]
44+
[{'name': 'Illinois', 'placetype': 'region', ...}]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from setuptools import setup, find_packages
2020

2121

22-
__version__ = "0.1.4"
22+
__version__ = "0.1.6"
2323

2424

2525
def do_setup():

0 commit comments

Comments
 (0)