Skip to content

Commit d17a89c

Browse files
committed
chore: prepare 0.13.0 release
1 parent 0c7deeb commit d17a89c

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.13.0]
11+
12+
### Added
13+
14+
- Add GitHub Autolink References configuration block (thanks to @0x46616c6b)
15+
1016
## [0.12.0]
1117

1218
### BREAKING CHANGES
@@ -334,7 +340,8 @@ Please review plans and report regressions and issues asap so we can improve doc
334340
- This is the initial release of our GitHub Repository module with support for
335341
creating and managing GitHub Repositories for Organizations.
336342

337-
[unreleased]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.12.0...HEAD
343+
[unreleased]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.13.0...HEAD
344+
[0.13.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.12.0...v0.13.0
338345
[0.12.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.11.0...v0.12.0
339346
[0.11.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.10.1...v0.11.0
340347
[0.10.1]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.10.0...v0.10.1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Most basic usage creating a new private github repository.
8383
```hcl
8484
module "repository" {
8585
source = "mineiros-io/repository/github"
86-
version = "~> 0.11.0"
86+
version = "~> 0.13.0"
8787
8888
name = "terraform-github-repository"
8989
license_template = "apache-2.0"

README.tfdoc.hcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ section {
8989
```hcl
9090
module "repository" {
9191
source = "mineiros-io/repository/github"
92-
version = "~> 0.11.0"
92+
version = "~> 0.13.0"
9393
9494
name = "terraform-github-repository"
9595
license_template = "apache-2.0"

examples/public-repository/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ branch protection.
1515
```hcl
1616
module "repository" {
1717
source = "mineiros-io/repository/github"
18-
version = "~> 0.11.0"
18+
version = "~> 0.13.0"
1919
2020
module_depends_on = [
2121
github_team.team

examples/public-repository/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
module "repository" {
99
source = "mineiros-io/repository/github"
10-
version = "~> 0.11.0"
10+
version = "~> 0.13.0"
1111

1212
module_depends_on = [
1313
module.team

0 commit comments

Comments
 (0)