Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparing the release of v0.13.0 #931

Merged
merged 4 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,30 @@ and this project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html)

## [Unreleased]

## [v0.13.0] - 2025-01-28

### Changed
- Integration tests: Test are no longer randomized! this means each fail should be reproducible, we are testing the most
popular datasets from all DAACs, see files under tests/integration/popular_collections.
([#215](https://github.com/nsidc/earthaccess/issues/215))
([**@mfisher87**](https://github.com/mfisher87))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is also contributor-facing


### Added
- VirtualiZarr: earthaccess can open archival formats (NetCDF, HDF5) as if they were Zarr by leveraging VirtualiZarr
In order to use this capability the collection needs to be supported by OPeNDAP and have dmrpp files.
See [example notebooks](https://github.com/nsidc/earthaccess/blob/main/docs/tutorials/dmrpp-virtualizarr.ipynb)!
([**@ayushnag**](https://github.com/ayushnag) and [**@TomNicholas**](https://github.com/TomNicholas/))

### Fixed

- `earthaccess.download` will let requests automatically decode compressed content
([#887](https://github.com/nsidc/earthaccess/issues/887))
([**@itcarroll**](https://github.com/itcarroll))

- `earthaccess.download` now shares the authenticated session cookie among threads to avoid overloading EDL.
([#913](https://github.com/nsidc/earthaccess/issues/913))
([**@hailiangzhang**](https://github.com/hailiangzhang))

## [v0.12.0] - 2024-11-13

### Changed
Expand Down Expand Up @@ -663,7 +681,8 @@ _Conception!_
- Add basic classes to interact with NASA CMR, EDL and cloud access.
- Basic object formatting.

[Unreleased]: https://github.com/nsidc/earthaccess/compare/v0.12.0...HEAD
[Unreleased]: https://github.com/nsidc/earthaccess/compare/v0.13.0...HEAD
[0.13.0]: https://github.com/nsidc/earthaccess/compare/v0.12.0...v0.13.0
[0.12.0]: https://github.com/nsidc/earthaccess/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/nsidc/earthaccess/releases/tag/v0.11.0
[0.10.0]: https://github.com/nsidc/earthaccess/releases/tag/v0.10.0
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ keywords:
url: "https://earthaccess.readthedocs.io"
repository-code: "https://github.com/nsidc/earthaccess"

version: "0.12.0"
date-released: "2024-11-13"
version: "0.13.0"
date-released: "2025-01-28"

authors:
- family-names: "Barrett"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "earthaccess"
version = "0.12.0"
version = "0.13.0"
description = "Client library for NASA Earthdata APIs"
authors = [
{name = "earthaccess contributors"}
Expand Down Expand Up @@ -184,7 +184,7 @@ combine-as-imports = true
convention = "google"

[tool.bumpversion]
current_version = "0.12.0"
current_version = "0.13.0"
commit = false
tag = false
regex = true
Expand Down