diff --git a/CHANGELOG.md b/CHANGELOG.md index a962799..80edf95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). This changelog is generated automatically based on [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). +## [0.3.0](https://github.com/GoogleCloudPlatform/terraform-google-artifact-registry/compare/v0.2.0...v0.3.0) (2024-09-19) + + +### ⚠ BREAKING CHANGES + +* Don't provide defaults for public repositories ([#34](https://github.com/GoogleCloudPlatform/terraform-google-artifact-registry/issues/34)) + +### Features + +* **deps:** Update Terraform Google Provider to v6 (major) ([#38](https://github.com/GoogleCloudPlatform/terraform-google-artifact-registry/issues/38)) ([5b3a2bd](https://github.com/GoogleCloudPlatform/terraform-google-artifact-registry/commit/5b3a2bd498381885f4c1c416801c9c08ce8fca19)) + + +### Bug Fixes + +* Don't provide defaults for public repositories ([#34](https://github.com/GoogleCloudPlatform/terraform-google-artifact-registry/issues/34)) ([110c340](https://github.com/GoogleCloudPlatform/terraform-google-artifact-registry/commit/110c34033ae74c386aeea8d31293a131c9b9d874)) + ## [0.2.0](https://github.com/GoogleCloudPlatform/terraform-google-artifact-registry/compare/v0.1.1...v0.2.0) (2024-05-12) diff --git a/README.md b/README.md index f2548e9..fd14cf3 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Basic usage of this module is as follows: ```hcl module "artifact_registry" { source = "GoogleCloudPlatform/artifact-registry/google" - version = "~> 0.2" + version = "~> 0.3" # Required variables project_id = "" diff --git a/metadata.yaml b/metadata.yaml index e3c069d..151bc09 100644 --- a/metadata.yaml +++ b/metadata.yaml @@ -23,7 +23,7 @@ spec: source: repo: https://github.com/googlestaging/terraform-google-artifact-registry.git sourceType: git - version: 0.2.0 + version: 0.3.0 actuationTool: type: Terraform version: '>= 0.13' diff --git a/versions.tf b/versions.tf index 5683b8d..a5a813b 100644 --- a/versions.tf +++ b/versions.tf @@ -28,6 +28,6 @@ terraform { } provider_meta "google" { - module_name = "blueprints/terraform/artifact-registry/v0.2.0" + module_name = "blueprints/terraform/artifact-registry/v0.3.0" } }