Skip to content

Commit bacf4bc

Browse files
authored
Merge pull request #128 from descarteslabs/release/v0.4.0
Release of v0.4.0. Major update to metadata searching.
2 parents 9907dd9 + d5d7d72 commit bacf4bc

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ Changelog
3636
=========
3737

3838
## [Unreleased]
39+
40+
## [0.4.0] - 2017-06-22
3941
### Changes
4042
- Major refactor of metadata.search
4143
* Introduction of "Products" through dl.metadata.products()
@@ -103,7 +105,8 @@ Changelog
103105
### Added
104106
- Initial release of client library
105107

106-
[Unreleased]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.3.3...HEAD
108+
[Unreleased]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.4.0...HEAD
109+
[0.4.0]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.3.3...v0.4.0
107110
[0.3.3]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.3.2...v0.3.3
108111
[0.3.2]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.3.1...v0.3.2
109112
[0.3.1]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.3.0...v0.3.1

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.3.3"
17+
__version__ = "0.4.0"
1818
from .auth import Auth
1919
descartes_auth = Auth()
2020

descarteslabs/services/places.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ def find(self, path, **kwargs):
6060
>>> import descarteslabs as dl
6161
>>> from pprint import pprint
6262
>>> results = dl.places.find('morocco')
63+
>>> _ = results[0].pop('bbox')
6364
>>> pprint(results)
64-
[{'bbox': [-17.013743, 21.419971, -1.031999, 35.926519],
65-
'id': 85632693,
65+
[{'id': 85632693,
6666
'name': 'Morocco',
6767
'path': 'continent:africa_country:morocco',
6868
'placetype': 'country',

0 commit comments

Comments
 (0)