Skip to content

Commit

Permalink
version 0.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
BinyaminSharet committed Jun 4, 2016
1 parent ec6f74b commit 0dd0f69
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Version 0.6.9 (2016-06-04)
==========================

* bugfix: [DataModel] fixed container bug - check rendered type of fields when generating default buffer
* bugfix: [DataModel] fixed inheritence of BitsFuncEncoder
* bugfix: [DataModel] List threw exception if had only one element
* bugfix: [DataModel] Meta field default rendered value was not empty
* bugfix: [WebInterface] html - check if data exists before using it to fill test info
* new feature: [ClientTarget] mark trigger timeout as an error, not failure
* new feature: [DataModel] new field - PsuedoTemplate

Version 0.6.8 (2016-05-04)
==========================

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = '0.6.8'
version = '0.6.9'
# The full version, including alpha/beta/rc tags.
release = '0.6.8'
release = '0.6.9'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


VERSION = '0.6.8'
VERSION = '0.6.9'
AUTHOR = 'Cisco SAS team'
EMAIL = 'kitty-fuzzer@googlegroups.com'
URL = 'https://github.com/cisco-sas/kitty.git'
Expand Down Expand Up @@ -39,7 +39,7 @@ def read(fname):
author_email=EMAIL,
url=URL,
packages=find_packages(),
install_requires=['docopt', 'bitstring!=3.1.4', 'six', 'requests'],
install_requires=['docopt', 'bitstring', 'six', 'requests'],
keywords=KEYWORDS,
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 0dd0f69

Please sign in to comment.