Skip to content

Commit

Permalink
Merge pull request #42 from raphaelrpl/b-0.4
Browse files Browse the repository at this point in the history
Prepare to release 0.4.1
  • Loading branch information
raphaelrpl authored Jul 6, 2021
2 parents d2ed92f + b9384c8 commit 4400b43
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ Changes
=======


Version 0.4.1 (2021-07-06)
--------------------------

- Fix bug related to customize API URL for Sentinel-2 `33 <https://github.com/brazil-data-cube/bdc-collectors/issues/33>`_.


Version 0.4.0 (2021-05-04)
--------------------------

Expand Down
1 change: 1 addition & 0 deletions bdc_collectors/scihub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ def download(self, scene_id: str, output: str, **kwargs) -> str:
options = dict(show_progressbars=self.progress)
if self.kwargs.get('api_url'):
options['api_url'] = self.kwargs['api_url']
options.setdefault('api_url', api.api_url)

api = SentinelAPI(client.username, client.password, **options)

Expand Down
2 changes: 1 addition & 1 deletion bdc_collectors/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@

"""Version information for BDC-Collectors."""

__version__ = '0.4.0'
__version__ = '0.4.1'

0 comments on commit 4400b43

Please sign in to comment.