Skip to content

Commit

Permalink
Merge pull request #32 from roaldnefs/release-v0.0.6
Browse files Browse the repository at this point in the history
Bump version to v0.0.6
  • Loading branch information
roaldnefs authored Oct 7, 2019
2 parents e53f147 + 000a290 commit 9253a7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/saltlint/rules/YamlHasOctalValueRule.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class YamlHasOctalValueRule(SaltLintRule):
description = 'Numbers that start with `0` should always be encapsulated in quotation marks'
severity = 'HIGH'
tags = ['formatting']
version_added = 'develop'
version_added = 'v0.0.6'

bracket_regex = re.compile(r"(?<!['\"])0+[1-9]\d*(?!['\"])")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from setuptools import setup, find_packages


version = "0.0.5"
version = "0.0.6"

if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
Expand Down

0 comments on commit 9253a7a

Please sign in to comment.