Skip to content

Commit

Permalink
build: generate patch version (0.7.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed Feb 27, 2021
1 parent 27d0fca commit 45f2bb3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions docs/examples/common.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module "main" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.1"
providers = {
github = github
Expand All @@ -29,7 +29,7 @@
module "main_with_key" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.1"
providers = {
github = github
Expand All @@ -53,7 +53,7 @@
module "main_with_secrets" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.1"
providers = {
github = github
Expand All @@ -74,7 +74,7 @@
module "main_with_pages" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.1"
providers = {
github = github
Expand Down Expand Up @@ -108,7 +108,7 @@
module "main" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.1"
providers = {
github = github
Expand Down Expand Up @@ -138,7 +138,7 @@
module "main" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.1"
providers = {
github = github
Expand Down
4 changes: 2 additions & 2 deletions example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <slovacus@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion provision/generators/README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ usage: |-
module "main_with_pages" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.1"
providers = {
github = github
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 45f2bb3

Please sign in to comment.