Skip to content

Commit c37e3d0

Browse files
committed
build: generate version minor (0.8.0)
1 parent 3835097 commit c37e3d0

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

README.md

Lines changed: 9 additions & 9 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.7.2"
27+
version = "0.8.0"
2828
2929
providers = {
3030
github = github
@@ -61,7 +61,7 @@ Full working example can be found in [example](./example) folder.
6161
6262
module "main" {
6363
source = "hadenlabs/repository/github"
64-
version = "0.7.2"
64+
version = "0.8.0"
6565
6666
providers = {
6767
github = github
@@ -86,7 +86,7 @@ Full working example can be found in [example](./example) folder.
8686
8787
module "main_with_key" {
8888
source = "hadenlabs/repository/github"
89-
version = "0.7.2"
89+
version = "0.8.0"
9090
9191
providers = {
9292
github = github
@@ -110,7 +110,7 @@ Full working example can be found in [example](./example) folder.
110110
111111
module "main_with_secrets" {
112112
source = "hadenlabs/repository/github"
113-
version = "0.7.2"
113+
version = "0.8.0"
114114
115115
providers = {
116116
github = github
@@ -131,7 +131,7 @@ Full working example can be found in [example](./example) folder.
131131
132132
module "main_with_pages" {
133133
source = "hadenlabs/repository/github"
134-
version = "0.7.2"
134+
version = "0.8.0"
135135
136136
providers = {
137137
github = github
@@ -165,7 +165,7 @@ Full working example can be found in [example](./example) folder.
165165
166166
module "main" {
167167
source = "hadenlabs/repository/github"
168-
version = "0.7.2"
168+
version = "0.8.0"
169169
170170
providers = {
171171
github = github
@@ -195,7 +195,7 @@ Full working example can be found in [example](./example) folder.
195195
196196
module "main" {
197197
source = "hadenlabs/repository/github"
198-
version = "0.7.2"
198+
version = "0.8.0"
199199
200200
providers = {
201201
github = github
@@ -229,7 +229,7 @@ Full working example can be found in [example](./example) folder.
229229
github = github
230230
}
231231
source = "hadenlabs/repository/github"
232-
version = "0.7.2"
232+
version = "0.8.0"
233233
name = "repository-example"
234234
description = "repository example"
235235
visibility = "public"
@@ -259,7 +259,7 @@ Full working example can be found in [example](./example) folder.
259259
github = github
260260
}
261261
source = "hadenlabs/repository/github"
262-
version = "0.7.2"
262+
version = "0.8.0"
263263
name = "repository-example"
264264
is_git_flow = true
265265
description = "repository example"

docs/examples/common.md

Lines changed: 8 additions & 8 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.2"
7+
version = "0.8.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.7.2"
32+
version = "0.8.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.7.2"
56+
version = "0.8.0"
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.2"
77+
version = "0.8.0"
7878
7979
providers = {
8080
github = github
@@ -108,7 +108,7 @@
108108
109109
module "main" {
110110
source = "hadenlabs/repository/github"
111-
version = "0.7.2"
111+
version = "0.8.0"
112112
113113
providers = {
114114
github = github
@@ -138,7 +138,7 @@
138138
139139
module "main" {
140140
source = "hadenlabs/repository/github"
141-
version = "0.7.2"
141+
version = "0.8.0"
142142
143143
providers = {
144144
github = github
@@ -172,7 +172,7 @@
172172
github = github
173173
}
174174
source = "hadenlabs/repository/github"
175-
version = "0.7.2"
175+
version = "0.8.0"
176176
name = "repository-example"
177177
description = "repository example"
178178
visibility = "public"
@@ -202,7 +202,7 @@
202202
github = github
203203
}
204204
source = "hadenlabs/repository/github"
205-
version = "0.7.2"
205+
version = "0.8.0"
206206
name = "repository-example"
207207
is_git_flow = true
208208
description = "repository example"

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.2"
5+
source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.8.0"
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.2"
15+
source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.8.0"
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.2",
3+
"version": "0.8.0",
44
"description": "terraform-github-repository for hadenlabs",
55
"repository": "ssh://git@github.com/hadenlabs/terraform-github-repository.git",
66
"author": "Luis Mayta <slovacus@gmail.com>",

provision/generators/README.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ usage: |-
5050
5151
module "main_with_pages" {
5252
source = "hadenlabs/repository/github"
53-
version = "0.7.2"
53+
version = "0.8.0"
5454
5555
providers = {
5656
github = github

setup.cfg

Lines changed: 3 additions & 3 deletions
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.2
5+
current_version = 0.8.0
66

77
[bumpversion:file:setup.cfg]
88
search = {current_version}
@@ -35,7 +35,7 @@ exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
3535
doctests = True
3636
inline-quotes = single
3737
accept-encodings = utf-8
38-
per-file-ignores =
38+
per-file-ignores =
3939
tests/*.py: S101, Z432
4040
hooks/*.py: T001
4141
**/*.py: D100, D104, D106, D401, X100
@@ -74,7 +74,7 @@ test = pytest
7474

7575
[tool:pytest]
7676
norecursedirs = "build" "docs" "docs[\/]_build" ".egg"
77-
addopts =
77+
addopts =
7878
-s -v
7979
--cov terraform-github-repository
8080
--cov-report html

0 commit comments

Comments
 (0)