Skip to content

Commit ba3ae40

Browse files
authored
Merge pull request #143 from gmuloc/rel/v1.2.0
Chore: Version v1.1.0 -> v1.2.0
2 parents fe56a3d + 3d24d41 commit ba3ae40

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

j2lint/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from rich.console import Console
77

88
NAME = "j2lint"
9-
VERSION = "v1.1.0"
9+
VERSION = "v1.2.0"
1010
DESCRIPTION = __doc__
1111

1212
__author__ = "Arista Networks"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "j2lint"
9-
version = "v1.1.0"
9+
version = "v1.2.0"
1010
description = "Command-line utility that validates jinja2 syntax according to Arista's AVD style guide."
1111
readme = "README.md"
1212
authors = [{ name = "Arista Ansible Team", email = "ansible@arista.com" }]
@@ -60,7 +60,7 @@ Homepage = "https://github.com/aristanetworks/j2lint.git"
6060
j2lint = "j2lint.cli:run"
6161

6262
[tool.bumpver]
63-
current_version = "v1.1.0"
63+
current_version = "v1.2.0"
6464
version_pattern = "vMAJOR.MINOR.PATCH"
6565
commit_message = "Chore: Version {old_version} -> {new_version}"
6666
commit = true

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def test_print_json_output(
250250
pytest.param(["-h"], "HELP", "", 0, pytest.raises(SystemExit), 0, 0, id="help"),
251251
pytest.param(
252252
["--version"],
253-
"Jinja2-Linter Version v1.1.0\n",
253+
"Jinja2-Linter Version v1.2.0\n",
254254
"",
255255
0,
256256
does_not_raise(),

0 commit comments

Comments
 (0)