Skip to content

Commit

Permalink
Merge pull request #128 from descarteslabs/release/v0.4.0
Browse files Browse the repository at this point in the history
Release of v0.4.0. Major update to metadata searching.
  • Loading branch information
samskillman authored Jun 22, 2017
2 parents 9907dd9 + d5d7d72 commit bacf4bc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ Changelog
=========

## [Unreleased]

## [0.4.0] - 2017-06-22
### Changes
- Major refactor of metadata.search
* Introduction of "Products" through dl.metadata.products()
Expand Down Expand Up @@ -103,7 +105,8 @@ Changelog
### Added
- Initial release of client library

[Unreleased]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.3.3...HEAD
[Unreleased]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.3.3...v0.4.0
[0.3.3]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/descarteslabs/descarteslabs-python/compare/v0.3.0...v0.3.1
Expand Down
2 changes: 1 addition & 1 deletion descarteslabs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# flake8: noqa

__version__ = "0.3.3"
__version__ = "0.4.0"
from .auth import Auth
descartes_auth = Auth()

Expand Down
4 changes: 2 additions & 2 deletions descarteslabs/services/places.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ def find(self, path, **kwargs):
>>> import descarteslabs as dl
>>> from pprint import pprint
>>> results = dl.places.find('morocco')
>>> _ = results[0].pop('bbox')
>>> pprint(results)
[{'bbox': [-17.013743, 21.419971, -1.031999, 35.926519],
'id': 85632693,
[{'id': 85632693,
'name': 'Morocco',
'path': 'continent:africa_country:morocco',
'placetype': 'country',
Expand Down

0 comments on commit bacf4bc

Please sign in to comment.