Skip to content

Commit

Permalink
Merge pull request #331 from jrbourbeau/release-0.7.0
Browse files Browse the repository at this point in the history
Release 0.7.0
  • Loading branch information
betolink committed Oct 31, 2023
2 parents cfc61a9 + 858ab0f commit 8461cfa
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# Changelog

## [unreleased]
* bug fixes:
## [v0.7.0] 2023-10-31
* Bug Fixes:
* Fix spelling mistake in `access` variable assignment (`direc` -> `direct`)
in `earthaccess.store._get_granules`.
* Pass `threads` arg to `_open_urls_https` in
`earthaccess.store._open_urls`, replacing the hard-coded value of 8.
* Return S3 data links by default when in region.
* Enhancements:
* `earthaccess.download` now accepts a single granule as input in addition to a list of granules.
* `earthaccess.download` now returns fully qualified local file paths.
* New Features:
* Earthaccess will now automatically search for Earthdata authentication. ``earthaccess.login()``
still works as before, but is no longer required if you have a ``~/.netrc`` file for have set
``EARTHDATA_USERNAME`` and ``EARTHDATA_PASSWORD`` environment variables.
* Add `earthaccess.auth_environ()` utility for getting Earthdata authentication environment variables.

## [v0.6.0] 2023-09-20
* bug fixes:
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ keywords:
url: "https://earthaccess.readthedocs.io"
repository-code: "https://github.com/nsidc/earthaccess"

version: "0.6.1"
date-released: "2023-09-20"
version: "0.7.0"
date-released: "2023-10-31"

authors:
- family-names: "Barrett"
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ scripts/format.sh
1. Use `bump-my-version` to increase the version number in all needed places, e.g. to
increase the minor version (`1.2.3` to `1.3.0`):
```
bumpversion bump minor
bump-my-version bump minor
```
2. Push a tag on the new commit containing the version number, prefixed with `v`, e.g.
`v1.3.0`.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "earthaccess"
version = "0.6.1"
version = "0.7.0"
homepage = "https://github.com/nsidc/earthaccess"
description = "Client library for NASA Earthdata APIs"
authors = ["earthaccess contributors"]
Expand Down Expand Up @@ -79,7 +79,7 @@ build-backend = "poetry.masonry.api"


[tool.bumpversion]
current_version = "0.6.1"
current_version = "0.7.0"
commit = false
tag = false

Expand Down

0 comments on commit 8461cfa

Please sign in to comment.