Skip to content

Commit

Permalink
build: generate version minor (0.9.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed Apr 7, 2021
1 parent 8344e35 commit da6fbf9
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Terraform module to provision an github repository.
module "main_with_pages" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand Down Expand Up @@ -61,7 +61,7 @@ Full working examples can be found in [examples](./examples) folder.
module "main" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand All @@ -86,7 +86,7 @@ Full working examples can be found in [examples](./examples) folder.
module "main_with_key" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand All @@ -110,7 +110,7 @@ Full working examples can be found in [examples](./examples) folder.
module "main_with_secrets" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand All @@ -132,7 +132,7 @@ Full working examples can be found in [examples](./examples) folder.
module "main_with_pages" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand Down Expand Up @@ -166,7 +166,7 @@ Full working examples can be found in [examples](./examples) folder.
module "main" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand Down Expand Up @@ -196,7 +196,7 @@ Full working examples can be found in [examples](./examples) folder.
module "main" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand Down Expand Up @@ -231,7 +231,7 @@ Full working examples can be found in [examples](./examples) folder.
github = github
}
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
name = "repository-example"
description = "repository example"
visibility = "public"
Expand Down Expand Up @@ -262,7 +262,7 @@ Full working examples can be found in [examples](./examples) folder.
github = github
}
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
name = "repository-example"
is_git_flow = true
description = "repository example"
Expand Down
16 changes: 8 additions & 8 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.8.0"
version = "0.9.0"
providers = {
github = github
Expand All @@ -29,7 +29,7 @@
module "main_with_key" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand All @@ -53,7 +53,7 @@
module "main_with_secrets" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand All @@ -75,7 +75,7 @@
module "main_with_pages" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand Down Expand Up @@ -109,7 +109,7 @@
module "main" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand Down Expand Up @@ -139,7 +139,7 @@
module "main" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand Down Expand Up @@ -174,7 +174,7 @@
github = github
}
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
name = "repository-example"
description = "repository example"
visibility = "public"
Expand Down Expand Up @@ -205,7 +205,7 @@
github = github
}
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
name = "repository-example"
is_git_flow = true
description = "repository example"
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.8.0",
"version": "0.9.0",
"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 @@ -57,7 +57,7 @@ usage: |-
module "main_with_pages" {
source = "hadenlabs/repository/github"
version = "0.8.0"
version = "0.9.0"
providers = {
github = github
Expand Down
4 changes: 2 additions & 2 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 docs/examples/common.md
commit = False
tag = False
current_version = 0.8.0
current_version = 0.9.0

[bumpversion:file:setup.cfg]
search = {current_version}
Expand Down Expand Up @@ -70,7 +70,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 da6fbf9

Please sign in to comment.