Skip to content

Commit 45f2bb3

Browse files
committed
build: generate patch version (0.7.1)
1 parent 27d0fca commit 45f2bb3

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

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.0"
7+
version = "0.7.1"
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.0"
32+
version = "0.7.1"
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.0"
56+
version = "0.7.1"
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.0"
77+
version = "0.7.1"
7878
7979
providers = {
8080
github = github
@@ -108,7 +108,7 @@
108108
109109
module "main" {
110110
source = "hadenlabs/repository/github"
111-
version = "0.7.0"
111+
version = "0.7.1"
112112
113113
providers = {
114114
github = github
@@ -138,7 +138,7 @@
138138
139139
module "main" {
140140
source = "hadenlabs/repository/github"
141-
version = "0.7.0"
141+
version = "0.7.1"
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.0"
5+
source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.1"
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.0"
15+
source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.1"
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.0",
3+
"version": "0.7.1",
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
@@ -59,7 +59,7 @@ usage: |-
5959
6060
module "main_with_pages" {
6161
source = "hadenlabs/repository/github"
62-
version = "0.7.0"
62+
version = "0.7.1"
6363
6464
providers = {
6565
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.0
5+
current_version = 0.7.1
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)