diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 26a26b0..3cf871e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.14 +current_version = 0.6.0 commit = False tag = False tag_name = {new_version} @@ -7,3 +7,4 @@ tag_name = {new_version} [bumpversion:file:scratchrelaxtv/__init__.py] [bumpversion:file:setup.cfg] + diff --git a/CHANGELOG.md b/CHANGELOG.md index 175dfb9..bd74edd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGE LOG +## 0.6.0 - 2020.05.29 + +* Output Terraform 0.12.x variables (variables without `"${}"`) +* Add feature to extract template variables from templates and generate corresponding HCL + ## 0.5.2 - 2019.07.19 * Add compatibility with HCL2 / Terraform 0.12.x variables (variables without `"${}"`) diff --git a/scratchrelaxtv/__init__.py b/scratchrelaxtv/__init__.py index 36e306e..63be0bc 100644 --- a/scratchrelaxtv/__init__.py +++ b/scratchrelaxtv/__init__.py @@ -20,7 +20,7 @@ import re -__version__ = "0.5.14" +__version__ = "0.6.0" EXIT_OKAY = 0 EXIT_NOT_OKAY = 1 diff --git a/setup.cfg b/setup.cfg index 09dd516..5a45a78 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ name = scratchrelaxtv description = Terraform developer tool to extract variables and generate variables.tf files. long_description = file: README.md, CHANGELOG.md long_description_content_type = text/markdown -version = 0.5.14 +version = 0.6.0 author = YakDriver author_email = projects@plus3it.com url = https://github.com/YakDriver/scratchrelaxtv