Skip to content

Commit

Permalink
v0.17.0 release (#253)
Browse files Browse the repository at this point in the history
* bump to v 0.17.0

* add new features to changelog

* change deprecated version date

* adjust changelog

* annoucement banner
  • Loading branch information
Christoph Rieke authored Sep 10, 2021
1 parent a75fca3 commit aed8b93
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ pip show up42-py
```

## Versions
### [0.17.0](https://pypi.org/project/up42-py/) (2021-09-10)
- Adds `usage_type` parameter for selection of "DATA" and "ANALYTICS" data in catalog search.
- Adds automatic handling of catalog search results pagination when requesting more
than 500 results.
- Adds support for datetime objects and all iso-format compatible time strings to
`construct_parameters`.
- Fix: `get_compatible_blocks` with an empty workflow now returns all data blocks.
- Start deprecation for `handle_multiple_features` parameter in `construct_parameters` to
guarantee parity with UP42 platform. In the future, the UP42 SDK will only handle
single geometries.
- Uses Oauth for access token handling.


### [0.16.0](https://pypi.org/project/up42-py/) (2021-06-30)
- Limit memory usage for large file downloads (#237)
- Remove deprecated job.get_status() (Replace by job.status) (#224)
Expand Down
2 changes: 1 addition & 1 deletion docs/theme_override_home/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!-- Announcement bar -->
{% block announce %}
<style>.md-announce a,.md-announce a:focus,.md-announce a:hover{color:currentColor}.md-announce strong{white-space:nowrap}.md-announce .twitter{margin-left:.2em;color:#00acee}</style>
<a href="https://sdk.up42.com/CHANGELOG/"><strong>New in 0.16.0: Usability improvements & deprecations! See the release notes and update!</strong>
<a href="https://sdk.up42.com/CHANGELOG/"><strong>New in 0.17.0: Improvements to catalog search! See the release notes and update!</strong>
</a>
{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion up42/_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.0
0.17.0
2 changes: 1 addition & 1 deletion up42/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def construct_parameters(
Dictionary of constructed input parameters.
"""
message = (
"The use of `handle_multiple_features` will be deprecated in version 0.17.0, "
"The use of `handle_multiple_features` will be deprecated in version 0.18.0, "
"to guarantee feature parity with the UP42 platform. The UP42 SDK from then on "
"will only handle single geometries!"
)
Expand Down

0 comments on commit aed8b93

Please sign in to comment.