Skip to content

Commit

Permalink
Bump version number, update CHANGELOG.md and TODO.md
Browse files Browse the repository at this point in the history
  • Loading branch information
brunns committed May 6, 2020
1 parent ee729b8 commit d31ed23
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Change Log

## 2.5

* Add [dynamic predicates and responses](http://www.mbtest.org/docs/api/injection). This feature requires Mountebank 2.0 or later, but all other features should continue to work with older version.
* Add MountebankServer.query_all_impostors() method to retrieve all impostors from a running MB server, including those not created locally.

## 2.4

* Allow MountebankServer to attach to an already running MB instance on another host.
* Make has_request() a builder style matcher, and use builder matcher construction wherever possible.

## 2.3

* Allow MountebankServer to attach to an already running MB instance. Split out execute-server behavior from MountebankServer class into new ExecutingMountebankServer.
* Python 3.8 supported.
2 changes: 0 additions & 2 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# To Do

* [Dynamic predicates and responses](http://www.mbtest.org/docs/api/injection).
* Retrieve impostors from a running MB instance, and hydrate.
* What if Mountebank is installed elsewhere? We should emit better messages if starting the mb server fails, and make the location configurable. This could be as simple as parameterising it.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
author = 'Simon Brunning'

# The short X.Y version
version = '2.3 '
version = '2.5'
# The full version, including alpha/beta/rc tags
release = '2.3.0'
release = '2.5.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
setup(
name="mbtest",
zip_safe=False,
version="2.4.0",
version="2.5.0",
description="Python wrapper & utils for the Mountebank over the wire test double tool.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit d31ed23

Please sign in to comment.