From c1f5a9ba635184b2d6c0eb8000cb782682e32375 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 27 Jun 2024 21:13:19 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=202.1.2=20=E2=86=92=202.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ helm_v3/pymockserver/Chart.yaml | 4 ++-- pymockserver/main.py | 2 +- pyproject.toml | 4 ++-- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b287cb..800d8fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ +## 2.2.0 (2024-06-27) + +### Feat + +- update python to 3.12 + ## 2.1.2 (2023-11-08) ### Fix diff --git a/helm_v3/pymockserver/Chart.yaml b/helm_v3/pymockserver/Chart.yaml index 1faf435..232babf 100644 --- a/helm_v3/pymockserver/Chart.yaml +++ b/helm_v3/pymockserver/Chart.yaml @@ -14,8 +14,8 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 2.1.2 +version: 2.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 2.1.2 +appVersion: 2.2.0 diff --git a/pymockserver/main.py b/pymockserver/main.py index 9c0aac7..414d9cd 100644 --- a/pymockserver/main.py +++ b/pymockserver/main.py @@ -8,7 +8,7 @@ from pymockserver.routers import meta, mockserver from pymockserver.tools.utils import use_route_names_as_operation_ids -__version__ = "2.1.2" +__version__ = "2.2.0" @asynccontextmanager diff --git a/pyproject.toml b/pyproject.toml index 88e407e..d9fbec8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires-python = ">=3.12" [tool.poetry] name = "pymockserver" -version = "2.1.2" +version = "2.2.0" description = "Simple MockServer implemented in python" authors = ["Kudlaty "] license = "GPL-3.0" @@ -29,7 +29,7 @@ ruff = "^0.5.0" [tool.commitizen] version_provider = "poetry" name = "cz_conventional_commits" -version = "2.1.2" +version = "2.2.0" annotated_tag = true version_files = [ "pyproject.toml:version",