Skip to content

Commit

Permalink
Merge pull request #104 from eerkunt/feature/improved-regex-matching
Browse files Browse the repository at this point in the history
Added pre-tested terraform versions
  • Loading branch information
eerkunt authored Jun 25, 2019
2 parents 5bd3e7f + 61f75d6 commit cb0c242
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# CHANGELOG

### 1.6.0 (2019-06-25)
### 1.0.7 (2019-06-25)
* Tested and added support for `terraform` 0.12.2 and 0.12.3

### 1.0.6 (2019-06-25)
* Improved 'contains' and 'regex' matching steps.

### 1.0.5 (2019-06-24)
Expand Down
4 changes: 3 additions & 1 deletion terraform_compliance/extensions/terraform.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ def __init__(self, filename, parse_it=True):
'''
self.supported_terraform_versions = [
'0.12.0',
'0.12.1'
'0.12.1',
'0.12.2',
'0.12.3'
]
self.supported_format_versions = ['0.1']

Expand Down
2 changes: 1 addition & 1 deletion terraform_compliance/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
reinstall_radish()

__app_name__ = "terraform-compliance"
__version__ = "1.0.6"
__version__ = "1.0.7"

print('{} v{} initiated\n'.format(__app_name__, __version__))

Expand Down

0 comments on commit cb0c242

Please # to comment.