diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5d5cf59..0285f99 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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/).
-
+
-## 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))
+
+
+
+## 0.1.0
+
+> 2022-05-07
### Features
diff --git a/README.md b/README.md
index e548794..d3ea95c 100644
--- a/README.md
+++ b/README.md
@@ -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"
@@ -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"
}
```
@@ -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"
@@ -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"
diff --git a/docs/examples/common.md b/docs/examples/common.md
index b335b76..bb14ff5 100644
--- a/docs/examples/common.md
+++ b/docs/examples/common.md
@@ -11,7 +11,7 @@
```hcl
module "main" {
source = "hadenlabs/iam-system-user/aws"
- version = "0.1.0"
+ version = "0.1.1"
}
```
@@ -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"
@@ -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"
diff --git a/docs/usage.md b/docs/usage.md
index d6c9b22..833637d 100644
--- a/docs/usage.md
+++ b/docs/usage.md
@@ -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"
diff --git a/internal/version/version.go b/internal/version/version.go
index 93c2315..fb97371 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -8,7 +8,7 @@ import (
)
// current version
-const dev = "0.1.0"
+const dev = "0.1.1"
// Provisioned by ldflags
var (
@@ -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 == "" {
diff --git a/package.json b/package.json
index 598e119..e71e35a 100644
--- a/package.json
+++ b/package.json
@@ -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 ",
"license": "LGPL-3.0",
diff --git a/setup.cfg b/setup.cfg
index ae74011..6f1e8d6 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -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}