Skip to content

Commit

Permalink
Merge pull request #313 from cglewis/master
Browse files Browse the repository at this point in the history
release v0.11.9
  • Loading branch information
cglewis authored May 7, 2020
2 parents 7d08d39 + 20a3796 commit 6beadc2
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.9.dev
0.11.9
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.9.dev'
assert get_version() == '0.11.9'


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.9.dev
0.11.9
2 changes: 1 addition & 1 deletion network_tap/ncapture/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.9.dev
0.11.9
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.8',
container = c.containers.run(image='cyberreboot/ncapture:v0.11.9',
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.8':
'cyberreboot/ncapture:v0.11.9':
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.9.dev
0.11.9
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.9.dev'
assert get_version() == '0.11.9'


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.9.dev
0.11.9
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.9.dev
0.11.9
2 changes: 1 addition & 1 deletion snort/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.9.dev
0.11.9
2 changes: 1 addition & 1 deletion tcprewrite_dot1q/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.9.dev
0.11.9

0 comments on commit 6beadc2

Please sign in to comment.