Skip to content

Commit db37779

Browse files
authored
Merge pull request lightbody#585 from jekh/update-documentation-for-2.1.4
Updated documentation for 2.1.4 release
2 parents 81f554b + 7aa14a1 commit db37779

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
BrowserMob Proxy allows you to manipulate HTTP requests and responses, capture HTTP content, and export performance data as a [HAR file](http://www.softwareishard.com/blog/har-12-spec/).
44
BMP works well as a standalone proxy server, but it is especially useful when embedded in Selenium tests.
55

6-
The latest version of BrowserMob Proxy is 2.1.2, powered by [LittleProxy](https://github.com/adamfisk/LittleProxy).
6+
The latest version of BrowserMob Proxy is 2.1.4, powered by [LittleProxy](https://github.com/adamfisk/LittleProxy).
77

88
If you're running BrowserMob Proxy within a Java application or Selenium test, get started with [Embedded Mode](#getting-started-embedded-mode). If you want to run BMP from the
99
command line as a standalone proxy, start with [Standalone](#getting-started-standalone).
@@ -14,7 +14,7 @@ To use BrowserMob Proxy in your tests or application, add the `browsermob-core`
1414
<dependency>
1515
<groupId>net.lightbody.bmp</groupId>
1616
<artifactId>browsermob-core</artifactId>
17-
<version>2.1.2</version>
17+
<version>2.1.4</version>
1818
<scope>test</scope>
1919
</dependency>
2020
```
@@ -91,7 +91,7 @@ The legacy interface, implicitly defined by the ProxyServer class, has been extr
9191
proxyServer.start();
9292
// [...]
9393

94-
// To use the LittleProxy-powered 2.1.2 release, simply change to
94+
// To use the LittleProxy-powered 2.1.4 release, simply change to
9595
// the LegacyProxyServer interface and the adapter for the new
9696
// LittleProxy-based implementation:
9797
LegacyProxyServer proxyServer = new BrowserMobProxyServerLegacyAdapter();
@@ -221,7 +221,7 @@ If you're using Java and Selenium, the easiest way to get started is to embed th
221221
<dependency>
222222
<groupId>net.lightbody.bmp</groupId>
223223
<artifactId>browsermob-core</artifactId>
224-
<version>2.1.2</version>
224+
<version>2.1.4</version>
225225
<scope>test</scope>
226226
</dependency>
227227
```
@@ -402,14 +402,14 @@ You'll need maven (`brew install maven` if you're on OS X):
402402

403403
[~]$ mvn -DskipTests
404404

405-
You'll find the standalone BrowserMob Proxy distributable zip at `browsermob-dist/target/browsermob-proxy-2.1.3-SNAPSHOT-bin.zip`. Unzip the contents and run the `browsermob-proxy` or `browsermob-proxy.bat` files in the `bin` directory.
405+
You'll find the standalone BrowserMob Proxy distributable zip at `browsermob-dist/target/browsermob-proxy-2.1.5-SNAPSHOT-bin.zip`. Unzip the contents and run the `browsermob-proxy` or `browsermob-proxy.bat` files in the `bin` directory.
406406

407407
When you build the latest code from source, you'll have access to the latest snapshot release. To use the SNAPSHOT version in your code, modify the version in your pom:
408408
```xml
409409
<dependency>
410410
<groupId>net.lightbody.bmp</groupId>
411411
<artifactId>browsermob-core</artifactId>
412-
<version>2.1.3-SNAPSHOT</version>
412+
<version>2.1.5-SNAPSHOT</version>
413413
<scope>test</scope>
414414
</dependency>
415415
```

mitm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To use MITM with standalone LittleProxy, add a dependency to the mitm module in
2323
<dependency>
2424
<groupId>net.lightbody.bmp</groupId>
2525
<artifactId>mitm</artifactId>
26-
<version>2.1.2</version>
26+
<version>2.1.4</version>
2727
</dependency>
2828
```
2929

0 commit comments

Comments
 (0)