Skip to content

Commit 0dd0f69

Browse files
version 0.6.9
1 parent ec6f74b commit 0dd0f69

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Version 0.6.9 (2016-06-04)
2+
==========================
3+
4+
* bugfix: [DataModel] fixed container bug - check rendered type of fields when generating default buffer
5+
* bugfix: [DataModel] fixed inheritence of BitsFuncEncoder
6+
* bugfix: [DataModel] List threw exception if had only one element
7+
* bugfix: [DataModel] Meta field default rendered value was not empty
8+
* bugfix: [WebInterface] html - check if data exists before using it to fill test info
9+
* new feature: [ClientTarget] mark trigger timeout as an error, not failure
10+
* new feature: [DataModel] new field - PsuedoTemplate
11+
112
Version 0.6.8 (2016-05-04)
213
==========================
314

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363
# built documents.
6464
#
6565
# The short X.Y version.
66-
version = '0.6.8'
66+
version = '0.6.9'
6767
# The full version, including alpha/beta/rc tags.
68-
release = '0.6.8'
68+
release = '0.6.9'
6969

7070
# The language for content autogenerated by Sphinx. Refer to documentation
7171
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def read(fname):
77
return open(os.path.join(os.path.dirname(__file__), fname)).read()
88

99

10-
VERSION = '0.6.8'
10+
VERSION = '0.6.9'
1111
AUTHOR = 'Cisco SAS team'
1212
EMAIL = 'kitty-fuzzer@googlegroups.com'
1313
URL = 'https://github.com/cisco-sas/kitty.git'
@@ -39,7 +39,7 @@ def read(fname):
3939
author_email=EMAIL,
4040
url=URL,
4141
packages=find_packages(),
42-
install_requires=['docopt', 'bitstring!=3.1.4', 'six', 'requests'],
42+
install_requires=['docopt', 'bitstring', 'six', 'requests'],
4343
keywords=KEYWORDS,
4444
entry_points={
4545
'console_scripts': [

0 commit comments

Comments
 (0)