Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion j2lint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from rich.console import Console

NAME = "j2lint"
VERSION = "v1.1.0"
VERSION = "v1.2.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.1.0"
version = "v1.2.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 @@ -60,7 +60,7 @@ Homepage = "https://github.com/aristanetworks/j2lint.git"
j2lint = "j2lint.cli:run"

[tool.bumpver]
current_version = "v1.1.0"
current_version = "v1.2.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 @@ -250,7 +250,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.1.0\n",
"Jinja2-Linter Version v1.2.0\n",
"",
0,
does_not_raise(),
Expand Down