Skip to content

Commit

Permalink
Chore: Version v1.0.1 -> v1.1.0 (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmuloc authored Jul 11, 2023
1 parent d64b611 commit 1f24268
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion j2lint/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""__init__.py - A command-line utility that checks for best practices in Jinja2.
"""
NAME = "j2lint"
VERSION = "v1.0.1"
VERSION = "v1.1.0"
DESCRIPTION = __doc__

__author__ = "Arista Networks"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "j2lint"
version = "v1.0.1"
version = "v1.1.0"
description = "Command-line utility that validates jinja2 syntax according to Arista's AVD style guide."
readme = "README.md"
authors = [{ name = "Arista Ansible Team", email = "ansible@arista.com" }]
Expand Down Expand Up @@ -55,7 +55,7 @@ Homepage = "https://github.com/aristanetworks/j2lint.git"
j2lint = "j2lint.cli:run"

[tool.bumpver]
current_version = "v1.0.1"
current_version = "v1.1.0"
version_pattern = "vMAJOR.MINOR.PATCH"
commit_message = "Chore: Version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def test_print_json_output(
pytest.param(["-h"], "HELP", "", 0, pytest.raises(SystemExit), 0, 0, id="help"),
pytest.param(
["--version"],
"Jinja2-Linter Version v1.0.1\n",
"Jinja2-Linter Version v1.1.0\n",
"",
0,
does_not_raise(),
Expand Down

0 comments on commit 1f24268

Please sign in to comment.