Skip to content

Commit

Permalink
Export DayNightFlag type alias (#64)
Browse files Browse the repository at this point in the history
Fixes #51
  • Loading branch information
chuckwondo authored Jul 8, 2024
1 parent 9431d7f commit eced8ac
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
14 changes: 8 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Added

- [issues/54](https://github.com/nasa/python_cmr/issues/54) Added support for searching for cloud-hosted collections.
- Support searching for cloud-hosted collections
([#54](https://github.com/nasa/python_cmr/issues/54))

### Fixed

- [issues/48](https://github.com/nasa/python_cmr/issues/48) When a query's
`Authorization` header is set via the `bearer_token` or `token` method, other
existing headers are no longer clobbered. However, if multiple calls are made
to `bearer_token` and/or `token`, later calls overwrite the `Authorization`
setting of prior calls (i.e., the last call wins).
- Do not clobber other headers when a query's `Authorization` header is set via
the `bearer_token` or `token` method. However, if multiple calls are made to
the `bearer_token` and/or `token` methods, later calls overwrite the
`Authorization` setting of prior calls (i.e., the last call wins).
([#48](https://github.com/nasa/python_cmr/issues/48))
- Export `DayNightFlag` type alias ([#51](https://github.com/nasa/python_cmr/issues/51))

## [0.11.0]

Expand Down
2 changes: 2 additions & 0 deletions cmr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
CMR_SIT,
CMR_UAT,
CollectionQuery,
DayNightFlag,
GranuleQuery,
Query,
ServiceQuery,
Expand All @@ -15,6 +16,7 @@
"CMR_SIT",
"CMR_UAT",
"CollectionQuery",
"DayNightFlag",
"GranuleQuery",
"Query",
"ServiceQuery",
Expand Down

0 comments on commit eced8ac

Please sign in to comment.