Skip to content

Commit 451ff20

Browse files
committed
Merge pull request #277 from jekh/version-string-update
Updated version string to beta-2
2 parents 89fc927 + aa57ac4 commit 451ff20

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

browsermob-core-littleproxy/src/main/java/net/lightbody/bmp/BrowserMobProxyServer.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@
8686
public class BrowserMobProxyServer implements BrowserMobProxy, LegacyProxyServer {
8787
private static final Logger log = LoggerFactory.getLogger(BrowserMobProxyServer.class);
8888

89-
private static final HarNameVersion HAR_CREATOR_VERSION = new HarNameVersion("BrowserMob Proxy", "2.1.0-beta-1-littleproxy");
89+
//TODO: extract the version string into a more suitable location
90+
private static final HarNameVersion HAR_CREATOR_VERSION = new HarNameVersion("BrowserMob Proxy", "2.1.0-beta-2-littleproxy");
9091

9192
/**
9293
* True only after the proxy has been successfully started.

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
@@ -66,7 +66,7 @@
6666
*/
6767
@Deprecated
6868
public class ProxyServer implements LegacyProxyServer, BrowserMobProxy {
69-
private static final HarNameVersion CREATOR = new HarNameVersion("BrowserMob Proxy", "2.1.0-beta-1-legacy");
69+
private static final HarNameVersion CREATOR = new HarNameVersion("BrowserMob Proxy", "2.1.0-beta-2-legacy");
7070
private static final Logger LOG = LoggerFactory.getLogger(ProxyServer.class);
7171

7272
/**

0 commit comments

Comments
 (0)