Skip to content

Commit

Permalink
Merge pull request #52 from podaac/release/0.2.2
Browse files Browse the repository at this point in the history
Release/0.2.2
  • Loading branch information
frankinspace authored Feb 5, 2025
2 parents 434abbf + 713971e commit f160715
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 34 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Security

## [0.2.2]
### Added
### Changed
- Lowered required version of hashicorp/null to ~> 2.1 to be compatible with the requirements of cumulus core
### Deprecated
### Removed
### Fixed
### Security

## [0.2.1]
### Added
### Changed
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,3 +193,13 @@ _Visual representation of the bignbit step function state machine:_
3. Activate the bignbit conda environment `conda activate bignbit`
4. Install python package and dependencies `poetry install`
5. Verify tests pass `poetry run pytest tests/`

> [!IMPORTANT]
> If developing on a `darwin_arm64` based mac, running terraform locally may result
> in an error message during `terraform init`: "Provider registry.terraform.io/hashicorp/null v2.1.2
> does not have a package available for your current platform, darwin_arm64."
> One workaround for this is to use https://github.com/kreuzwerker/m1-terraform-provider-helper
> to compile a local arm-based version of the hashicorp/null provider.
>
> This is only necessary as long as cumulus core requires `~>2.1` version of hashicorp/null because
> v3.x of the provider does have support for `darwin_arm64` platforms
64 changes: 33 additions & 31 deletions examples/cumulus-tf/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/cumulus-tf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
}
null = {
source = "hashicorp/null"
version = "~> 3"
version = "~> 2.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bignbit"
version = "0.2.1"
version = "0.2.2rc1"
description = "Browse image generation and transfer"
authors = ["PO.DAAC <podaac@jpl.nasa.gov>"]
license = "Apache 2.0"
Expand Down
2 changes: 1 addition & 1 deletion terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
}
null = {
source = "hashicorp/null"
version = "~> 3"
version = "~> 2.1"
}
}
}
Expand Down

0 comments on commit f160715

Please sign in to comment.