Skip to content

Commit 2076832

Browse files
committed
ci: generate version 0.11.0
1 parent d43e2fd commit 2076832

File tree

7 files changed

+71
-26
lines changed

7 files changed

+71
-26
lines changed

.github/linters/markdown-link-config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"ignorePatterns": [
44
{
55
"pattern": "^https://hadenlabs.com"
6+
},
7+
{
8+
"pattern": "^https://github.com/hadenlabs/terraform-github-repository/compare"
69
}
710
],
811
"replacementPatterns": [

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,47 @@
22

33
All notable changes to this project will be documented in this file. This file uses change log convention from [keep a CHANGELOG](http://keepachangelog.com/en/0.3.0/).
44

5+
<a name="0.11.0"></a>
6+
7+
## [0.11.0](https://github.com/hadenlabs/terraform-github-repository/compare/0.10.0...0.11.0)
8+
9+
> 2021-08-08
10+
11+
### Bug Fixes
12+
13+
- implement validation make terraform ([#77](https://github.com/hadenlabs/terraform-github-repository/issues/77))
14+
- generated github pages branch ([#77](https://github.com/hadenlabs/terraform-github-repository/issues/77))
15+
- load data labels ([#77](https://github.com/hadenlabs/terraform-github-repository/issues/77))
16+
- links missing for documentation ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
17+
18+
### Code Refactoring
19+
20+
- value default to data ([#77](https://github.com/hadenlabs/terraform-github-repository/issues/77))
21+
- organization to owner for github ([#77](https://github.com/hadenlabs/terraform-github-repository/issues/77))
22+
- load data topics and labels ([#77](https://github.com/hadenlabs/terraform-github-repository/issues/77))
23+
- test implement repository faker data ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
24+
- local name generated ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
25+
- local output generation ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
26+
- github actions configuration ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
27+
- generator readme ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
28+
- lints code gitleaks and golangci ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
29+
30+
### Features
31+
32+
- implement faker values ([#77](https://github.com/hadenlabs/terraform-github-repository/issues/77))
33+
- implement local topics ([#77](https://github.com/hadenlabs/terraform-github-repository/issues/77))
34+
- implement structure work flow test ([#77](https://github.com/hadenlabs/terraform-github-repository/issues/77))
35+
- implement configuration project ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
36+
- implement code test faker repository ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
37+
- implement actions git flow ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
38+
- implement hooks prepare commit to pre-commit ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
39+
40+
### Features
41+
42+
- ignore files lock hcl ([#77](https://github.com/hadenlabs/terraform-github-repository/issues/77))
43+
- implement faker repository ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
44+
- clean unnecessary provider value ([#75](https://github.com/hadenlabs/terraform-github-repository/issues/75))
45+
546
<a name="0.10.0"></a>
647

748
## [0.10.0](https://github.com/hadenlabs/terraform-github-repository/compare/0.9.0...0.10.0)

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Terraform module to provision an github repository.
2424
2525
module "main_with_pages" {
2626
source = "hadenlabs/repository/github"
27-
version = "0.10.0"
27+
version = "0.11.0"
2828
2929
providers = {
3030
github = github
@@ -61,7 +61,7 @@ Full working examples can be found in [examples](./examples) folder.
6161
6262
module "main" {
6363
source = "hadenlabs/repository/github"
64-
version = "0.10.0"
64+
version = "0.11.0"
6565
6666
providers = {
6767
github = github
@@ -86,7 +86,7 @@ Full working examples can be found in [examples](./examples) folder.
8686
8787
module "main_with_key" {
8888
source = "hadenlabs/repository/github"
89-
version = "0.10.0"
89+
version = "0.11.0"
9090
9191
providers = {
9292
github = github
@@ -110,7 +110,7 @@ Full working examples can be found in [examples](./examples) folder.
110110
111111
module "main_with_secrets" {
112112
source = "hadenlabs/repository/github"
113-
version = "0.10.0"
113+
version = "0.11.0"
114114
115115
providers = {
116116
github = github
@@ -132,7 +132,7 @@ Full working examples can be found in [examples](./examples) folder.
132132
133133
module "main_with_pages" {
134134
source = "hadenlabs/repository/github"
135-
version = "0.10.0"
135+
version = "0.11.0"
136136
137137
providers = {
138138
github = github
@@ -166,7 +166,7 @@ Full working examples can be found in [examples](./examples) folder.
166166
167167
module "main" {
168168
source = "hadenlabs/repository/github"
169-
version = "0.10.0"
169+
version = "0.11.0"
170170
171171
providers = {
172172
github = github
@@ -196,7 +196,7 @@ Full working examples can be found in [examples](./examples) folder.
196196
197197
module "main" {
198198
source = "hadenlabs/repository/github"
199-
version = "0.10.0"
199+
version = "0.11.0"
200200
201201
providers = {
202202
github = github
@@ -231,7 +231,7 @@ Full working examples can be found in [examples](./examples) folder.
231231
github = github
232232
}
233233
source = "hadenlabs/repository/github"
234-
version = "0.10.0"
234+
version = "0.11.0"
235235
name = "repository-example"
236236
description = "repository example"
237237
visibility = "public"
@@ -262,7 +262,7 @@ Full working examples can be found in [examples](./examples) folder.
262262
github = github
263263
}
264264
source = "hadenlabs/repository/github"
265-
version = "0.10.0"
265+
version = "0.11.0"
266266
name = "repository-example"
267267
is_git_flow = true
268268
description = "repository example"
@@ -283,7 +283,7 @@ Full working examples can be found in [examples](./examples) folder.
283283
github = github
284284
}
285285
source = "hadenlabs/repository/github"
286-
version = "0.10.0"
286+
version = "0.11.0"
287287
name = "repository-example"
288288
description = "repository example"
289289
visibility = "public"
@@ -302,7 +302,7 @@ Full working examples can be found in [examples](./examples) folder.
302302
github = github
303303
}
304304
source = "hadenlabs/repository/github"
305-
version = "0.10.0"
305+
version = "0.11.0"
306306
name = "repository-example"
307307
description = "repository example"
308308
visibility = "public"
@@ -320,7 +320,7 @@ Full working examples can be found in [examples](./examples) folder.
320320
github = github
321321
}
322322
source = "hadenlabs/repository/github"
323-
version = "0.10.0"
323+
version = "0.11.0"
324324
name = "repository-example"
325325
description = "repository example"
326326
visibility = "public"
@@ -361,6 +361,7 @@ No modules.
361361
| --- | --- |
362362
| [github_actions_secret.this](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/actions_secret) | resource |
363363
| [github_branch.develop](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch) | resource |
364+
| [github_branch.gh_pages](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch) | resource |
364365
| [github_branch_default.develop_default](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/branch_default) | resource |
365366
| [github_issue_label.this](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/issue_label) | resource |
366367
| [github_repository.this](https://registry.terraform.io/providers/integrations/github/latest/docs/resources/repository) | resource |

docs/examples/common.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
module "main" {
66
source = "hadenlabs/repository/github"
7-
version = "0.10.0"
7+
version = "0.11.0"
88
99
providers = {
1010
github = github
@@ -29,7 +29,7 @@
2929
3030
module "main_with_key" {
3131
source = "hadenlabs/repository/github"
32-
version = "0.10.0"
32+
version = "0.11.0"
3333
3434
providers = {
3535
github = github
@@ -53,7 +53,7 @@
5353
5454
module "main_with_secrets" {
5555
source = "hadenlabs/repository/github"
56-
version = "0.10.0"
56+
version = "0.11.0"
5757
5858
providers = {
5959
github = github
@@ -75,7 +75,7 @@
7575
7676
module "main_with_pages" {
7777
source = "hadenlabs/repository/github"
78-
version = "0.10.0"
78+
version = "0.11.0"
7979
8080
providers = {
8181
github = github
@@ -109,7 +109,7 @@
109109
110110
module "main" {
111111
source = "hadenlabs/repository/github"
112-
version = "0.10.0"
112+
version = "0.11.0"
113113
114114
providers = {
115115
github = github
@@ -139,7 +139,7 @@
139139
140140
module "main" {
141141
source = "hadenlabs/repository/github"
142-
version = "0.10.0"
142+
version = "0.11.0"
143143
144144
providers = {
145145
github = github
@@ -174,7 +174,7 @@
174174
github = github
175175
}
176176
source = "hadenlabs/repository/github"
177-
version = "0.10.0"
177+
version = "0.11.0"
178178
name = "repository-example"
179179
description = "repository example"
180180
visibility = "public"
@@ -205,7 +205,7 @@
205205
github = github
206206
}
207207
source = "hadenlabs/repository/github"
208-
version = "0.10.0"
208+
version = "0.11.0"
209209
name = "repository-example"
210210
is_git_flow = true
211211
description = "repository example"
@@ -226,7 +226,7 @@
226226
github = github
227227
}
228228
source = "hadenlabs/repository/github"
229-
version = "0.10.0"
229+
version = "0.11.0"
230230
name = "repository-example"
231231
description = "repository example"
232232
visibility = "public"
@@ -245,7 +245,7 @@
245245
github = github
246246
}
247247
source = "hadenlabs/repository/github"
248-
version = "0.10.0"
248+
version = "0.11.0"
249249
name = "repository-example"
250250
description = "repository example"
251251
visibility = "public"
@@ -263,7 +263,7 @@
263263
github = github
264264
}
265265
source = "hadenlabs/repository/github"
266-
version = "0.10.0"
266+
version = "0.11.0"
267267
name = "repository-example"
268268
description = "repository example"
269269
visibility = "public"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hadenlabs/terraform-github-repository",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"description": "terraform-github-repository for hadenlabs",
55
"author": "Luis Mayta <slovacus@gmail.com>",
66
"license": "LGPL-3.0",

provision/generators/README.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ usage: |-
6060
6161
module "main_with_pages" {
6262
source = "hadenlabs/repository/github"
63-
version = "0.10.0"
63+
version = "0.11.0"
6464
6565
providers = {
6666
github = github

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
files = package.json provision/generators/README.yaml docs/examples/common.md
33
commit = False
44
tag = False
5-
current_version = 0.10.0
5+
current_version = 0.11.0
66

77
[bumpversion:file:setup.cfg]
88
search = {current_version}

0 commit comments

Comments
 (0)