Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@
public class BrowserMobProxyServer implements BrowserMobProxy, LegacyProxyServer {
private static final Logger log = LoggerFactory.getLogger(BrowserMobProxyServer.class);

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

/**
* True only after the proxy has been successfully started.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
*/
@Deprecated
public class ProxyServer implements LegacyProxyServer, BrowserMobProxy {
private static final HarNameVersion CREATOR = new HarNameVersion("BrowserMob Proxy", "2.1.0-beta-1-legacy");
private static final HarNameVersion CREATOR = new HarNameVersion("BrowserMob Proxy", "2.1.0-beta-2-legacy");
private static final Logger LOG = LoggerFactory.getLogger(ProxyServer.class);

/**
Expand Down