Skip to content

Commit 6d601b1

Browse files
committed
chore: prepare 0.18.0 release
1 parent 6e5763c commit 6d601b1

File tree

3 files changed

+14
-29
lines changed

3 files changed

+14
-29
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.18.0]
11+
12+
### Added
13+
14+
- Add support for v4 branch protections.
15+
16+
### Removed
17+
18+
- BREAKING CHANGE: Remove deprectated variable `branch_protections` please use `branch_protections_v3` instead.
19+
1020
## [0.17.0]
1121

1222
### Added
@@ -385,7 +395,8 @@ Please review plans and report regressions and issues asap so we can improve doc
385395
- This is the initial release of our GitHub Repository module with support for
386396
creating and managing GitHub Repositories for Organizations.
387397

388-
[unreleased]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.17.0...HEAD
398+
[unreleased]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.18.0...HEAD
399+
[0.18.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.17.0...v0.18.0
389400
[0.17.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.16.2...v0.17.0
390401
[0.16.2]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.16.1...v0.16.2
391402
[0.16.1]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.16.0...v0.16.1

README.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -104,25 +104,12 @@ Most basic usage creating a new private github repository.
104104
```hcl
105105
module "repository" {
106106
source = "mineiros-io/repository/github"
107-
version = "~> 0.16.0"
107+
version = "~> 0.18.0"
108108
109109
name = "terraform-github-repository"
110110
license_template = "apache-2.0"
111111
gitignore_template = "Terraform"
112112
}
113-
114-
provider "github" {}
115-
116-
terraform {
117-
required_version = "~> 1.0"
118-
119-
required_providers {
120-
github = {
121-
source = "integrations/github"
122-
version = "~> 4.0"
123-
}
124-
}
125-
}
126113
```
127114

128115
## Module Argument Reference

README.tfdoc.hcl

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -109,25 +109,12 @@ section {
109109
```hcl
110110
module "repository" {
111111
source = "mineiros-io/repository/github"
112-
version = "~> 0.16.0"
112+
version = "~> 0.18.0"
113113
114114
name = "terraform-github-repository"
115115
license_template = "apache-2.0"
116116
gitignore_template = "Terraform"
117117
}
118-
119-
provider "github" {}
120-
121-
terraform {
122-
required_version = "~> 1.0"
123-
124-
required_providers {
125-
github = {
126-
source = "integrations/github"
127-
version = "~> 4.0"
128-
}
129-
}
130-
}
131118
```
132119
END
133120
}

0 commit comments

Comments
 (0)