Skip to content

Commit

Permalink
build: generate version (0.2.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed Jan 18, 2022
1 parent c1b93b3 commit 633af0b
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 6 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,39 @@

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.2.0"></a>

## [0.2.0](https://github.com/hadenlabs/terraform-null-tags/compare/0.1.1...0.2.0)

> 2022-01-17
### Bug Fixes

- version generate ([#10](https://github.com/hadenlabs/terraform-null-tags/issues/10))
- validate test name ([#10](https://github.com/hadenlabs/terraform-null-tags/issues/10))
- default environment not required ([#10](https://github.com/hadenlabs/terraform-null-tags/issues/10))

### Code Refactoring

- configuration confluence ([#10](https://github.com/hadenlabs/terraform-null-tags/issues/10))
- task actions mark and sonar ([#10](https://github.com/hadenlabs/terraform-null-tags/issues/10))
- configuration project ([#11](https://github.com/hadenlabs/terraform-null-tags/issues/11))
- configuration projects ([#11](https://github.com/hadenlabs/terraform-null-tags/issues/11))
- make actions to task ([#11](https://github.com/hadenlabs/terraform-null-tags/issues/11))
- lints pre-commit ([#11](https://github.com/hadenlabs/terraform-null-tags/issues/11))
- change name to repository-null-tags ([#8](https://github.com/hadenlabs/terraform-null-tags/issues/8))

### Features

- implement outputs id full ([#14](https://github.com/hadenlabs/terraform-null-tags/issues/14))
- implement id full ([#14](https://github.com/hadenlabs/terraform-null-tags/issues/14))
- clean var environment ([#10](https://github.com/hadenlabs/terraform-null-tags/issues/10))
- not used environment ([#10](https://github.com/hadenlabs/terraform-null-tags/issues/10))
- ignore variable environment ([#10](https://github.com/hadenlabs/terraform-null-tags/issues/10))
- implement task actions confluence ([#10](https://github.com/hadenlabs/terraform-null-tags/issues/10))
- implement diagrams ([#11](https://github.com/hadenlabs/terraform-null-tags/issues/11))
- implement workflow confluence and sonar ([#11](https://github.com/hadenlabs/terraform-null-tags/issues/11))

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

## [0.1.1](https://github.com/hadenlabs/terraform-null-tags/compare/0.1.0...0.1.1)
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ terraform tags
```hcl
module "main" {
source = "hadenlabs/terraform-null-tags"
version = "0.1.1"
version = "0.2.0"
namespace = "hadenlabs"
environment = "us-east-1"
stage = "develop"
Expand All @@ -51,7 +51,7 @@ Full working examples can be found in [examples](./examples) folder.
```hcl
module "main" {
source = "hadenlabs/terraform-null-tags"
version = "0.1.1"
version = "0.2.0"
namespace = "hadenlabs"
stage = "develop"
name = "jenkins"
Expand Down Expand Up @@ -96,6 +96,7 @@ No resources.
| --- | --- |
| <a name="output_attributes"></a> [attributes](#output_attributes) | List of attributes |
| <a name="output_delimiter"></a> [delimiter](#output_delimiter) | Delimiter between `namespace`, `stage`, `name` and `attributes` |
| <a name="output_id_full"></a> [id_full](#output_id_full) | return id full generated of label order |
| <a name="output_label_order"></a> [label_order](#output_label_order) | The naming order actually used to create the ID |
| <a name="output_name"></a> [name](#output_name) | Normalized name |
| <a name="output_name32"></a> [name32](#output_name32) | first 32 chars of string name |
Expand Down
2 changes: 1 addition & 1 deletion 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/terraform-null-tags"
version = "0.1.1"
version = "0.2.0"
namespace = "hadenlabs"
stage = "develop"
name = "jenkins"
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-null-tags",
"version": "0.1.1",
"version": "0.2.0",
"description": "terraform-null-tags for hadenlabs",
"author": "Luis Mayta <slovacus@gmail.com>",
"license": "LGPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion provision/generators/README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ usage: |-
```hcl
module "main" {
source = "hadenlabs/terraform-null-tags"
version = "0.1.1"
version = "0.2.0"
namespace = "hadenlabs"
environment = "us-east-1"
stage = "develop"
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 docs/examples/common.md
commit = False
tag = False
current_version = 0.1.1
current_version = 0.2.0

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

0 comments on commit 633af0b

Please sign in to comment.