Skip to content

Commit aeb1399

Browse files
committed
Text updates for beta-4 release
1 parent a694aea commit aeb1399

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
BrowserMob Proxy is a simple utility that makes it easy to capture performance data from browsers, typically written using automation toolkits such as Selenium and Watir.
44

5-
The latest version of BrowserMobProxy is 2.1.0-beta-3. It is the second release that supports the [new BrowserMobProxy interface](#new-browsermobproxy-api), and the second release [powered by LittleProxy](#littleproxy-support). We highly recommend that you use 2.1.0-beta-3 instead of the [previous 2.0.0 release](https://github.com/lightbody/browsermob-proxy/tree/2.0).
5+
The latest version of BrowserMobProxy is 2.1.0-beta-4. It is the second release that supports the [new BrowserMobProxy interface](#new-browsermobproxy-api), and the second release [powered by LittleProxy](#littleproxy-support). We highly recommend that you use 2.1.0-beta-4 instead of the [previous 2.0.0 release](https://github.com/lightbody/browsermob-proxy/tree/2.0).
66

77
To use BrowserMob Proxy in your tests, add the `browsermob-core-littleproxy` dependency to your pom:
88
```xml
@@ -11,7 +11,7 @@ To use BrowserMob Proxy in your tests, add the `browsermob-core-littleproxy` dep
1111
<!-- To use the legacy, Jetty-based implementation,
1212
change the artifactId to browsermob-core -->
1313
<artifactId>browsermob-core-littleproxy</artifactId>
14-
<version>2.1.0-beta-3</version>
14+
<version>2.1.0-beta-4</version>
1515
<scope>test</scope>
1616
</dependency>
1717
```
@@ -62,7 +62,7 @@ BrowserMob Proxy now supports using LittleProxy instead of Jetty 5 + Apache HTTP
6262
<dependency>
6363
<groupId>net.lightbody.bmp</groupId>
6464
<artifactId>browsermob-core-littleproxy</artifactId>
65-
<version>2.1.0-beta-3</version>
65+
<version>2.1.0-beta-4</version>
6666
<scope>test</scope>
6767
</dependency>
6868
```
@@ -218,7 +218,7 @@ If you're using Java and Selenium, the easiest way to get started is to embed th
218218
<groupId>net.lightbody.bmp</groupId>
219219
<!-- To use the legacy, Jetty-based implementation, change the artifactId to browsermob-core -->
220220
<artifactId>browsermob-core-littleproxy</artifactId>
221-
<version>2.1.0-beta-3</version>
221+
<version>2.1.0-beta-4</version>
222222
<scope>test</scope>
223223
</dependency>
224224
```
@@ -425,7 +425,7 @@ When you build the latest code from source, you'll have access to the latest sna
425425
<dependency>
426426
<groupId>net.lightbody.bmp</groupId>
427427
<artifactId>browsermob-core-littleproxy</artifactId>
428-
<version>2.1.0-beta-4-SNAPSHOT</version>
428+
<version>2.1.0-beta-5-SNAPSHOT</version>
429429
<scope>test</scope>
430430
</dependency>
431431
```

browsermob-core/src/main/java/net/lightbody/bmp/proxy/ProxyServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
*/
6969
@Deprecated
7070
public class ProxyServer implements LegacyProxyServer, BrowserMobProxy {
71-
private static final HarNameVersion CREATOR = new HarNameVersion("BrowserMob Proxy", "2.1.0-beta-3-legacy");
71+
private static final HarNameVersion CREATOR = new HarNameVersion("BrowserMob Proxy", "2.1.0-beta-4-legacy");
7272
private static final Logger LOG = LoggerFactory.getLogger(ProxyServer.class);
7373

7474
/**

0 commit comments

Comments
 (0)