Skip to content

Commit baf6c1f

Browse files
authored
Merge pull request #265 from cglewis/master
release v0.11.1
2 parents 3516957 + 9e21c62 commit baf6c1f

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ APPENDIX: How to apply the Apache License to your work.
187187
same "printed page" as the copyright notice for easier
188188
identification within third-party archives.
189189

190-
Copyright (c) 2016-2019 IQT Labs LLC, All Rights Reserved.
190+
Copyright (c) 2016-2020 IQT Labs LLC, All Rights Reserved.
191191

192192
Licensed under the Apache License, Version 2.0 (the "License");
193193
you may not use this file except in compliance with the License.

mercury/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.1.dev
1+
0.11.1

mercury/test_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_ispcap():
2323

2424

2525
def test_version():
26-
assert get_version() == '0.11.1.dev'
26+
assert get_version() == '0.11.1'
2727

2828

2929
def test_parse_output():

network_tap/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.1.dev
1+
0.11.1

network_tap/ncapture/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.1.dev
1+
0.11.1

network_tap/ncontrol/paths.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def on_post(self, req, resp):
7878
cmd += ' ' + payload['id'] + ' ' + payload['iters'] + ' "'
7979
cmd += payload['filter'] + '"'
8080
try:
81-
container = c.containers.run(image='cyberreboot/ncapture:latest',
81+
container = c.containers.run(image='cyberreboot/ncapture:v0.11.1',
8282
command=cmd, remove=True, detach=True, **tool_d)
8383
resp.body = "(True, 'successfully created and started filter: " + \
8484
str(payload['id']) + ' on container: ' + \
@@ -182,7 +182,7 @@ def on_get(self, req, resp):
182182
for c in containers.containers.list(all=True):
183183
# TODO: maybe find a way to not have to hard code image name
184184
if c.attrs['Config']['Image'] == \
185-
'cyberreboot/ncapture:latest':
185+
'cyberreboot/ncapture:v0.11.1':
186186
lst = {}
187187
lst['id'] = c.attrs['Id'][:12]
188188
lst['status'] = c.attrs['State']['Status']

p0f/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.1.dev
1+
0.11.1

p0f/test_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_ispcap():
2626

2727

2828
def test_version():
29-
assert get_version() == '0.11.1.dev'
29+
assert get_version() == '0.11.1'
3030

3131

3232
def test_parse_output():

pcap_stats/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.1.dev
1+
0.11.1

pcap_to_node_pcap/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.11.1.dev
1+
0.11.1

0 commit comments

Comments
 (0)