diff --git a/CHANGELOG.md b/CHANGELOG.md index 85b64f3..f46f1d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ +## 1.8.3 (2021-07-26) + +### Fix + +- creating dist dir during release build + ## 1.8.2 (2021-07-26) ### Fix diff --git a/clients/typescript-node/package.json b/clients/typescript-node/package.json index 6745c13..3312f63 100644 --- a/clients/typescript-node/package.json +++ b/clients/typescript-node/package.json @@ -1,6 +1,6 @@ { "name": "pymockserver-client", - "version": "1.8.2", + "version": "1.8.3", "description": "PyMockServer client", "repository": { "type": "git", diff --git a/helm_v3/pymockserver/Chart.yaml b/helm_v3/pymockserver/Chart.yaml index 8ee406e..00cbc16 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: 1.8.2 +version: 1.8.3 # 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: 1.8.2 +appVersion: 1.8.3 diff --git a/pymockserver/main.py b/pymockserver/main.py index b0076aa..4bcc4da 100644 --- a/pymockserver/main.py +++ b/pymockserver/main.py @@ -6,7 +6,7 @@ from pymockserver.routers import meta, mockserver from pymockserver.utils import use_route_names_as_operation_ids -__version__ = "1.8.2" +__version__ = "1.8.3" app = FastAPI( title="MockServer API", diff --git a/pyproject.toml b/pyproject.toml index 9bfdbeb..62b0605 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] name = "pymockserver" -version = "1.8.2" +version = "1.8.3" description = "Simple MockServer implemented in python" authors = ["Kudlaty "] license = "GPL-3.0" [tool.commitizen] name = "cz_conventional_commits" -version = "1.8.2" +version = "1.8.3" annotated_tag = true version_files = [ "pyproject.toml:version",