Skip to content

Commit

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



## 1.9.0 (2021-07-27)

### Feat

- do not include version in helm package in release
- do not create volume storage for diskcache
- remove diskcache from dependency and remove its adapter
- add shared memory adapter and switch to it
- move logger, fixture and utils to tool module
- move manager to models module
- rename database to diskcache as it truly is and move it to adapters module
- move model types to models package

## 1.8.3 (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.3",
"version": "1.9.0",
"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.3
version: 1.9.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: 1.8.3
appVersion: 1.9.0
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.tools.fixture import load_fixtures
from pymockserver.tools.utils import use_route_names_as_operation_ids

__version__ = "1.8.3"
__version__ = "1.9.0"

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.3"
version = "1.9.0"
description = "Simple MockServer implemented in python"
authors = ["Kudlaty <[email protected]>"]
license = "GPL-3.0"

[tool.commitizen]
name = "cz_conventional_commits"
version = "1.8.3"
version = "1.9.0"
annotated_tag = true
version_files = [
"pyproject.toml:version",
Expand Down

0 comments on commit d77d2d6

Please sign in to comment.