Skip to content

Commit 3888728

Browse files
committed
build: generate version patch (0.1.1)
1 parent 12dae55 commit 3888728

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This is a list of plugins that need to be installed previously to enjoy all the
3535
```hcl
3636
module "main" {
3737
source = "hadenlabs/key-pair/aws"
38-
version = "0.1.0"
38+
version = "0.1.1"
3939
name = "name of key pair"
4040
tags = {
4141
"key": "value"
@@ -53,7 +53,7 @@ Full working examples can be found in [examples](./examples) folder.
5353
```hcl
5454
module "main" {
5555
source = "hadenlabs/key-pair/aws"
56-
version = "0.1.0"
56+
version = "0.1.1"
5757
5858
}
5959
```

docs/examples/common.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
```hcl
44
module "main" {
55
source = "hadenlabs/key-pair/aws"
6-
version = "0.1.0"
6+
version = "0.1.1"
77
88
}
99
```

internal/version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
)
99

1010
// current version
11-
const dev = "0.1.0"
11+
const dev = "0.1.1"
1212

1313
// Provisioned by ldflags
1414
var (
@@ -22,7 +22,7 @@ func init() {
2222
if version == "" {
2323
version = dev
2424
}
25-
if version == "v0.1.0-" { // building in a directory which is not a git repository
25+
if version == "v0.1.1-" { // building in a directory which is not a git repository
2626
version = dev
2727
}
2828
if commitHash == "" {

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-aws-key-pair",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "terraform-aws-key-pair",
55
"author": "Luis Mayta <slovacus@gmail.com>",
66
"license": "LGPL-3.0",

provision/generators/README.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ usage: |-
7474
```hcl
7575
module "main" {
7676
source = "hadenlabs/key-pair/aws"
77-
version = "0.1.0"
77+
version = "0.1.1"
7878
name = "name of key pair"
7979
tags = {
8080
"key": "value"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
files = package.json provision/generators/README.yaml internal/version/version.go docs/examples/common.md
33
commit = False
44
tag = False
5-
current_version = 0.1.0
5+
current_version = 0.1.1
66

77
[bumpversion:file:setup.cfg]
88
search = {current_version}

0 commit comments

Comments
 (0)