From 1f242682122fa258557e429f1b92fadd6d2be2d4 Mon Sep 17 00:00:00 2001 From: Guillaume Mulocher Date: Tue, 11 Jul 2023 11:14:34 +0200 Subject: [PATCH] Chore: Version v1.0.1 -> v1.1.0 (#65) --- j2lint/__init__.py | 2 +- pyproject.toml | 4 ++-- tests/test_cli.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/j2lint/__init__.py b/j2lint/__init__.py index b3de867..d460fa1 100644 --- a/j2lint/__init__.py +++ b/j2lint/__init__.py @@ -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" diff --git a/pyproject.toml b/pyproject.toml index a064fe9..87b778d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" }] @@ -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 diff --git a/tests/test_cli.py b/tests/test_cli.py index d8f3962..476ed02 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -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(),