Skip to content

Commit

Permalink
Increase version number to 1.0.1 (#37)
Browse files Browse the repository at this point in the history
Increase the version number to 1.0.1.

Fix the release checklist to include regenerating the docs.
  • Loading branch information
rlenglet authored Aug 5, 2024
1 parent 8d7d25b commit db3939e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ cp terraform-provider-illumio-cloudsecure ~/.terraform.d/plugins/registry.terraf

1. Implement the `ConfigService` gRPC server as specified in the commit to be released, and deploy that server.
1. Choose a version number for the new release. Follow [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html) format `vX.Y.Z`, e.g. `v1.2.3`.
1. Update the version number in `examples/provider/provider.tf` (omit the `v` prefix):
1. Update the version number in `examples/provider/provider.tf` (omit the `v` prefix), and re-generate the docs (`make generate`):

```
terraform {
required_providers {
illumio-cloudsecure = {
source = "illumio/illumio-cloudsecure"
version = "~> 1.0.0"
version = "~> 1.0.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ terraform {
required_providers {
illumio-cloudsecure = {
source = "illumio/illumio-cloudsecure"
version = "~> 1.0.0"
version = "~> 1.0.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
illumio-cloudsecure = {
source = "illumio/illumio-cloudsecure"
version = "~> 1.0.0"
version = "~> 1.0.1"
}
}
}
Expand Down

0 comments on commit db3939e

Please sign in to comment.