Skip to content

Commit

Permalink
build: generate version patch (0.1.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed May 7, 2022
1 parent d9d6348 commit 9ffa365
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 15 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@

All notable changes to this project will be documented in this file. This file uses change log convention from [keep a CHANGELOG](http://keepachangelog.com/en/0.3.0/).

<a name="0.1.0"></a>
<a name="0.1.1"></a>

## 0.1.0
## [0.1.1](https://github.com/hadenlabs/terraform-aws-iam-system-user/compare/0.1.0...0.1.1)

> 2022-05-07
### Bug Fixes

- configuration generators readme (0.1.0)
- name module project ([#8](https://github.com/hadenlabs/terraform-aws-iam-system-user/issues/8))

<a name="0.1.0"></a>

## 0.1.0

> 2022-05-07
### Features

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This is a list of plugins that need to be installed previously to enjoy all the
```hcl
module "main" {
source = "hadenlabs/iam-system-user/aws"
version = "0.1.0"
version = "0.1.1"
namespace = "gitlab"
stage = "dev"
name = "bot"
Expand All @@ -58,7 +58,7 @@ Full working examples can be found in [examples](./examples) folder.
```hcl
module "main" {
source = "hadenlabs/iam-system-user/aws"
version = "0.1.0"
version = "0.1.1"
}
```

Expand Down Expand Up @@ -102,7 +102,7 @@ data "aws_iam_policy_document" "s3_policy" {
module "s3_user" {
source = "hadenlabs/iam-system-user/aws"
version = "0.1.0"
version = "0.1.1"
namespace = "gitlab"
stage = "dev"
name = "bot"
Expand Down Expand Up @@ -156,7 +156,7 @@ data "aws_iam_policy_document" "s3_policy" {
module "s3_user" {
source = "hadenlabs/iam-system-user/aws"
version = "0.1.0"
version = "0.1.1"
namespace = "gitlab"
stage = "dev"
name = "bot"
Expand Down
6 changes: 3 additions & 3 deletions docs/examples/common.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
```hcl
module "main" {
source = "hadenlabs/iam-system-user/aws"
version = "0.1.0"
version = "0.1.1"
}
```

Expand Down Expand Up @@ -55,7 +55,7 @@ data "aws_iam_policy_document" "s3_policy" {
module "s3_user" {
source = "hadenlabs/iam-system-user/aws"
version = "0.1.0"
version = "0.1.1"
namespace = "gitlab"
stage = "dev"
name = "bot"
Expand Down Expand Up @@ -109,7 +109,7 @@ data "aws_iam_policy_document" "s3_policy" {
module "s3_user" {
source = "hadenlabs/iam-system-user/aws"
version = "0.1.0"
version = "0.1.1"
namespace = "gitlab"
stage = "dev"
name = "bot"
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
```hcl
module "main" {
source = "hadenlabs/iam-system-user/aws"
version = "0.1.0"
version = "0.1.1"
namespace = "gitlab"
stage = "dev"
name = "bot"
Expand Down
4 changes: 2 additions & 2 deletions internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

// current version
const dev = "0.1.0"
const dev = "0.1.1"

// Provisioned by ldflags
var (
Expand All @@ -22,7 +22,7 @@ func init() {
if version == "" {
version = dev
}
if version == "v0.1.0-" { // building in a directory which is not a git repository
if version == "v0.1.1-" { // building in a directory which is not a git repository
version = dev
}
if commitHash == "" {
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-aws-iam-system-user",
"version": "0.1.0",
"version": "0.1.1",
"description": "terraform-aws-iam-system-user",
"author": "Luis Mayta <luis@hadenlabs.com>",
"license": "LGPL-3.0",
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 internal/version/version.go docs/examples/common.md docs/usage.md
commit = False
tag = False
current_version = 0.1.0
current_version = 0.1.1

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

0 comments on commit 9ffa365

Please # to comment.