Skip to content

Commit

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



## 2.0.0 (2021-08-05)

### Feat

- handle partially match on headers
- handle exact and partially match on body
- add headers and body to HttpRequest type

### BREAKING CHANGE

- changing structure of fixtures and change in way it matches requests

## 1.9.0 (2021-07-27)

### Feat
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.9.0",
"version": "2.0.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.9.0
version: 2.0.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.9.0
appVersion: 2.0.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.routers import meta, mockserver
from pymockserver.tools.utils import use_route_names_as_operation_ids

__version__ = "1.9.0"
__version__ = "2.0.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.9.0"
version = "2.0.0"
description = "Simple MockServer implemented in python"
authors = ["Kudlaty <kfuks2@gmail.com>"]
license = "GPL-3.0"

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

0 comments on commit 734fcae

Please sign in to comment.