File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## 2.13.1
4
+
5
+ * Re-release
6
+
7
+ ## 2.13.0
8
+
9
+ * Enhancement - add support for OPTIONS HTTP verb in predicates. (Thanks [ @melmoth-der-wanderer (https://github.com/melmoth-der-wanderer ).)
10
+
3
11
## 2.12.0
4
12
5
13
* Enhancement - add ` with_json ` to ` had_request ` matcher.
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ update the version number in `setup.py`, then:
118
118
version=" n.n.n" # Needs to match new version number in setup.py.
119
119
git checkout -b " release-$version "
120
120
make precommit && git commit -am" Release $version " && git push --set-upstream origin " release-$version " # If not already all pushed, which it should be.
121
- gh release create " V$version " --target " release-$version " --title " Version $version " -- generate-notes
121
+ gh release create " V$version " --target " release-$version " --generate-notes
122
122
python setup.py sdist bdist_wheel && twine upload dist/* $version *
123
123
git checkout master && git merge " release-$version "
124
124
git push
Original file line number Diff line number Diff line change 53
53
setup (
54
54
name = "mbtest" ,
55
55
zip_safe = False ,
56
- version = "2.12.0 " ,
56
+ version = "2.13.1 " ,
57
57
description = "Python wrapper & utils for the Mountebank over the wire test double tool." ,
58
58
long_description = long_description ,
59
59
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments