Skip to content

Commit

Permalink
Merge pull request #144 from rapid7/version_bump_validator
Browse files Browse the repository at this point in the history
Update dependencies, version
  • Loading branch information
pmara-r7 authored Oct 25, 2021
2 parents cc4a549 + fe4944b commit 673e588
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ be on your way to contributing!

## Changelog

* 2.43.1 - Add GitPython dependency for using VersionBumpValidator
* 2.43.0 - Add VersionBumpValidator to check if a major or minor version increment is needed
* 2.42.0 - Add in WorkflowScreenshotValidator to check parenthesis in screenshot title
* 2.41.1 - Exit with proper return codes when ran independently via CLI
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class SpecConstants:
class VersionBumpValidator(KomandPluginValidator):

def __init__(self):
super().__init__()
self.MAJOR_INSTRUCTIONS_STRING = ""
self.MINOR_INSTRUCTIONS_STRING = ""
self.name = "Version Increment Validator"
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="insightconnect_integrations_validators",
version="2.42.0",
version="2.43.1",
description="Validator tooling for InsightConnect integrations",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -25,6 +25,7 @@
"typing==3.7.4.1",
"PyYAML~=5.4.1",
"dacite==1.6.0",
"GitPython==3.1.20",
],
entry_points={"console_scripts": ["icon-validate=icon_validator.__main__:main"]},
classifiers=[
Expand Down

0 comments on commit 673e588

Please sign in to comment.