Skip to content

Commit

Permalink
bump: version 1.8.2 → 1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jul 26, 2021
1 parent acb38f7 commit 0f4014b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@



## 1.8.3 (2021-07-26)

### Fix

- creating dist dir during release build

## 1.8.2 (2021-07-26)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion clients/typescript-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pymockserver-client",
"version": "1.8.2",
"version": "1.8.3",
"description": "PyMockServer client",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions helm_v3/pymockserver/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion pymockserver/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "pymockserver"
version = "1.8.2"
version = "1.8.3"
description = "Simple MockServer implemented in python"
authors = ["Kudlaty <kfuks2@gmail.com>"]
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",
Expand Down

0 comments on commit 0f4014b

Please sign in to comment.