diff --git a/CHANGELOG.md b/CHANGELOG.md index 86742a5d..9b56f67c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/CITATION.cff b/CITATION.cff index b0367db6..aa85db90 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -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" diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ff685c5a..8a253b6f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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`. diff --git a/pyproject.toml b/pyproject.toml index ea277370..953bb809 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] @@ -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