Skip to content

Commit

Permalink
Merge pull request #62 from capitalone/dev
Browse files Browse the repository at this point in the history
Release 2023.6.0
  • Loading branch information
fdosani authored Jun 5, 2023
2 parents df9d9be + e7f3595 commit a66656f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
author = "Akshay Gupta"

# The short X.Y version
version = "2023.4.0"
version = "2023.6.0"
# The full version, including alpha/beta/rc tags
release = ""

Expand Down
2 changes: 1 addition & 1 deletion edgetest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Package initialization."""


__version__ = "2023.4.0"
__version__ = "2023.6.0"

__title__ = "edgetest"
__description__ = "Bleeding edge dependency testing"
Expand Down
2 changes: 1 addition & 1 deletion edgetest/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def cli(
pm.hook.addoption(schema=docstructure)
validator = EdgetestValidator(schema=docstructure.schema)
if not validator.validate(conf):
click.echo("Unable to validate configuration file.")
click.echo(f"Unable to validate configuration file. Error: {validator.errors}")
raise ValueError("Unable to validate configuration file.")
conf = validator.document

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ console_scripts =
edgetest = edgetest.interface:cli

[bumpver]
current_version = "2023.4.0"
current_version = "2023.6.0"
version_pattern = "YYYY.MM.INC0"
commit_message = "Bump {old_version} to {new_version}"
commit = True
Expand Down

0 comments on commit a66656f

Please sign in to comment.