Skip to content

Commit d62d217

Browse files
committed
build: generate version patch (0.7.2)
1 parent 7214cdd commit d62d217

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ It's 100% Open Source and licensed under the [APACHE2](LICENSE).
3030
3131
module "main_with_pages" {
3232
source = "hadenlabs/repository/github"
33-
version = "0.7.0"
33+
version = "0.7.2"
3434
3535
providers = {
3636
github = github
@@ -67,7 +67,7 @@ Full working example can be found in [example](./example) folder.
6767
6868
module "main" {
6969
source = "hadenlabs/repository/github"
70-
version = "0.7.0"
70+
version = "0.7.2"
7171
7272
providers = {
7373
github = github
@@ -92,7 +92,7 @@ Full working example can be found in [example](./example) folder.
9292
9393
module "main_with_key" {
9494
source = "hadenlabs/repository/github"
95-
version = "0.7.0"
95+
version = "0.7.2"
9696
9797
providers = {
9898
github = github
@@ -116,7 +116,7 @@ Full working example can be found in [example](./example) folder.
116116
117117
module "main_with_secrets" {
118118
source = "hadenlabs/repository/github"
119-
version = "0.7.0"
119+
version = "0.7.2"
120120
121121
providers = {
122122
github = github
@@ -137,7 +137,7 @@ Full working example can be found in [example](./example) folder.
137137
138138
module "main_with_pages" {
139139
source = "hadenlabs/repository/github"
140-
version = "0.7.0"
140+
version = "0.7.2"
141141
142142
providers = {
143143
github = github
@@ -171,7 +171,7 @@ Full working example can be found in [example](./example) folder.
171171
172172
module "main" {
173173
source = "hadenlabs/repository/github"
174-
version = "0.7.0"
174+
version = "0.7.2"
175175
176176
providers = {
177177
github = github
@@ -201,7 +201,7 @@ Full working example can be found in [example](./example) folder.
201201
202202
module "main" {
203203
source = "hadenlabs/repository/github"
204-
version = "0.7.0"
204+
version = "0.7.2"
205205
206206
providers = {
207207
github = github

docs/examples/common.md

Lines changed: 6 additions & 6 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.7.1"
7+
version = "0.7.2"
88
99
providers = {
1010
github = github
@@ -29,7 +29,7 @@
2929
3030
module "main_with_key" {
3131
source = "hadenlabs/repository/github"
32-
version = "0.7.1"
32+
version = "0.7.2"
3333
3434
providers = {
3535
github = github
@@ -53,7 +53,7 @@
5353
5454
module "main_with_secrets" {
5555
source = "hadenlabs/repository/github"
56-
version = "0.7.1"
56+
version = "0.7.2"
5757
5858
providers = {
5959
github = github
@@ -74,7 +74,7 @@
7474
7575
module "main_with_pages" {
7676
source = "hadenlabs/repository/github"
77-
version = "0.7.1"
77+
version = "0.7.2"
7878
7979
providers = {
8080
github = github
@@ -108,7 +108,7 @@
108108
109109
module "main" {
110110
source = "hadenlabs/repository/github"
111-
version = "0.7.1"
111+
version = "0.7.2"
112112
113113
providers = {
114114
github = github
@@ -138,7 +138,7 @@
138138
139139
module "main" {
140140
source = "hadenlabs/repository/github"
141-
version = "0.7.1"
141+
version = "0.7.2"
142142
143143
providers = {
144144
github = github

example/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module "main" {
22
providers = {
33
github = github
44
}
5-
source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.1"
5+
source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.2"
66
name = var.repository_name
77
description = var.repository_description
88
visibility = "public"
@@ -12,7 +12,7 @@ module "main_with_key" {
1212
providers = {
1313
github = github
1414
}
15-
source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.1"
15+
source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.2"
1616
name = var.repository_name
1717
description = var.repository_description
1818
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.7.1",
3+
"version": "0.7.2",
44
"description": "terraform-github-repository for hadenlabs",
55
"repository": "ssh://[email protected]/hadenlabs/terraform-github-repository.git",
66
"author": "Luis Mayta <[email protected]>",

provision/generators/README.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ usage: |-
5959
6060
module "main_with_pages" {
6161
source = "hadenlabs/repository/github"
62-
version = "0.7.1"
62+
version = "0.7.2"
6363
6464
providers = {
6565
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 example/main.tf docs/examples/common.md
33
commit = False
44
tag = False
5-
current_version = 0.7.1
5+
current_version = 0.7.2
66

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

0 commit comments

Comments
 (0)