Skip to content

Commit

Permalink
build: generate version patch (0.7.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed Mar 2, 2021
1 parent 7214cdd commit d62d217
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ It's 100% Open Source and licensed under the [APACHE2](LICENSE).
module "main_with_pages" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.2"
providers = {
github = github
Expand Down Expand Up @@ -67,7 +67,7 @@ Full working example can be found in [example](./example) folder.
module "main" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.2"
providers = {
github = github
Expand All @@ -92,7 +92,7 @@ Full working example can be found in [example](./example) folder.
module "main_with_key" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.2"
providers = {
github = github
Expand All @@ -116,7 +116,7 @@ Full working example can be found in [example](./example) folder.
module "main_with_secrets" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.2"
providers = {
github = github
Expand All @@ -137,7 +137,7 @@ Full working example can be found in [example](./example) folder.
module "main_with_pages" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.2"
providers = {
github = github
Expand Down Expand Up @@ -171,7 +171,7 @@ Full working example can be found in [example](./example) folder.
module "main" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.2"
providers = {
github = github
Expand Down Expand Up @@ -201,7 +201,7 @@ Full working example can be found in [example](./example) folder.
module "main" {
source = "hadenlabs/repository/github"
version = "0.7.0"
version = "0.7.2"
providers = {
github = github
Expand Down
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.1"
version = "0.7.2"
providers = {
github = github
Expand All @@ -29,7 +29,7 @@
module "main_with_key" {
source = "hadenlabs/repository/github"
version = "0.7.1"
version = "0.7.2"
providers = {
github = github
Expand All @@ -53,7 +53,7 @@
module "main_with_secrets" {
source = "hadenlabs/repository/github"
version = "0.7.1"
version = "0.7.2"
providers = {
github = github
Expand All @@ -74,7 +74,7 @@
module "main_with_pages" {
source = "hadenlabs/repository/github"
version = "0.7.1"
version = "0.7.2"
providers = {
github = github
Expand Down Expand Up @@ -108,7 +108,7 @@
module "main" {
source = "hadenlabs/repository/github"
version = "0.7.1"
version = "0.7.2"
providers = {
github = github
Expand Down Expand Up @@ -138,7 +138,7 @@
module "main" {
source = "hadenlabs/repository/github"
version = "0.7.1"
version = "0.7.2"
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.1"
source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.2"
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.1"
source = "git://github.com/hadenlabs/terraform-github-repository.git?ref=0.7.2"
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.1",
"version": "0.7.2",
"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.1"
version = "0.7.2"
providers = {
github = github
Expand Down
2 changes: 1 addition & 1 deletion 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.1
current_version = 0.7.2

[bumpversion:file:setup.cfg]
search = {current_version}
Expand Down

0 comments on commit d62d217

Please sign in to comment.