Skip to content

Commit

Permalink
Merge pull request #335 from cglewis/master
Browse files Browse the repository at this point in the history
release v0.11.13
  • Loading branch information
cglewis authored Aug 5, 2020
2 parents 9c57fe7 + 2a1e6b0 commit 1b1e8c2
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion mercury/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.13.dev
0.11.13
2 changes: 1 addition & 1 deletion mercury/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_ispcap():


def test_version():
assert get_version() == '0.11.13.dev'
assert get_version() == '0.11.13'


def test_parse_output():
Expand Down
2 changes: 1 addition & 1 deletion network_tap/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.13.dev
0.11.13
2 changes: 1 addition & 1 deletion network_tap/ncapture/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.13.dev
0.11.13
4 changes: 2 additions & 2 deletions network_tap/ncontrol/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def on_post(self, req, resp):
cmd += ' ' + payload['id'] + ' ' + payload['iters'] + ' "'
cmd += payload['filter'] + '"'
try:
container = c.containers.run(image='cyberreboot/ncapture:v0.11.12',
container = c.containers.run(image='iqtlabs/ncapture:v0.11.13',
command=cmd, remove=remove, detach=True, **tool_d)
resp.body = "(True, 'successfully created and started filter: " + \
str(payload['id']) + ' on container: ' + \
Expand Down Expand Up @@ -187,7 +187,7 @@ def on_get(self, req, resp):
for c in containers.containers.list(all=True):
# TODO: maybe find a way to not have to hard code image name
if c.attrs['Config']['Image'] == \
'cyberreboot/ncapture:v0.11.12':
'iqtlabs/ncapture:v0.11.13':
lst = {}
lst['id'] = c.attrs['Id'][:12]
lst['status'] = c.attrs['State']['Status']
Expand Down
2 changes: 1 addition & 1 deletion p0f/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.13.dev
0.11.13
2 changes: 1 addition & 1 deletion p0f/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_ispcap():


def test_version():
assert get_version() == '0.11.13.dev'
assert get_version() == '0.11.13'


def test_parse_output():
Expand Down
2 changes: 1 addition & 1 deletion pcap_stats/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.13.dev
0.11.13
2 changes: 1 addition & 1 deletion pcap_to_node_pcap/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.12.dev
0.11.13
2 changes: 1 addition & 1 deletion snort/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.13.dev
0.11.13
2 changes: 1 addition & 1 deletion tcprewrite_dot1q/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.13.dev
0.11.13

0 comments on commit 1b1e8c2

Please sign in to comment.