diff --git a/docs/examples/common.md b/docs/examples/common.md index aff3882..2e3a52d 100644 --- a/docs/examples/common.md +++ b/docs/examples/common.md @@ -4,7 +4,7 @@ module "main" { source = "hadenlabs/repository/github" - version = "0.7.0" + version = "0.7.1" providers = { github = github @@ -29,7 +29,7 @@ module "main_with_key" { source = "hadenlabs/repository/github" - version = "0.7.0" + version = "0.7.1" providers = { github = github @@ -53,7 +53,7 @@ module "main_with_secrets" { source = "hadenlabs/repository/github" - version = "0.7.0" + version = "0.7.1" providers = { github = github @@ -74,7 +74,7 @@ module "main_with_pages" { source = "hadenlabs/repository/github" - version = "0.7.0" + version = "0.7.1" providers = { github = github @@ -108,7 +108,7 @@ module "main" { source = "hadenlabs/repository/github" - version = "0.7.0" + version = "0.7.1" providers = { github = github @@ -138,7 +138,7 @@ module "main" { source = "hadenlabs/repository/github" - version = "0.7.0" + version = "0.7.1" providers = { github = github diff --git a/example/main.tf b/example/main.tf index 2cad60f..7bfe7ef 100644 --- a/example/main.tf +++ b/example/main.tf @@ -2,7 +2,7 @@ module "main" { providers = { github = github } - source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.0" + source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.1" name = var.repository_name description = var.repository_description visibility = "public" @@ -12,7 +12,7 @@ module "main_with_key" { providers = { github = github } - source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.0" + source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.1" name = var.repository_name description = var.repository_description visibility = "public" diff --git a/package.json b/package.json index 6814051..4f94629 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hadenlabs/terraform-github-repository", - "version": "0.7.0", + "version": "0.7.1", "description": "terraform-github-repository for hadenlabs", "repository": "ssh://git@github.com/hadenlabs/terraform-github-repository.git", "author": "Luis Mayta ", diff --git a/provision/generators/README.yaml b/provision/generators/README.yaml index 5f3b887..73aaa13 100644 --- a/provision/generators/README.yaml +++ b/provision/generators/README.yaml @@ -59,7 +59,7 @@ usage: |- module "main_with_pages" { source = "hadenlabs/repository/github" - version = "0.7.0" + version = "0.7.1" providers = { github = github diff --git a/setup.cfg b/setup.cfg index 928de7f..ee47cea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ files = package.json provision/generators/README.yaml example/main.tf docs/examples/common.md commit = False tag = False -current_version = 0.7.0 +current_version = 0.7.1 [bumpversion:file:setup.cfg] search = {current_version} @@ -35,7 +35,7 @@ exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules doctests = True inline-quotes = single accept-encodings = utf-8 -per-file-ignores = +per-file-ignores = tests/*.py: S101, Z432 hooks/*.py: T001 **/*.py: D100, D104, D106, D401, X100 @@ -74,7 +74,7 @@ test = pytest [tool:pytest] norecursedirs = "build" "docs" "docs[\/]_build" ".egg" -addopts = +addopts = -s -v --cov terraform-github-repository --cov-report html