From f19e81124c08d926fdba533ed58ddbc4a941bdf5 Mon Sep 17 00:00:00 2001 From: Binyamin Sharet Date: Fri, 31 Mar 2017 14:10:57 +0300 Subject: [PATCH] version 0.7.1 --- CHANGELOG | 8 ++++++++ CONTRIBUTING.rst | 3 +-- docs/source/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index feb9281..77bbb47 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +Version 0.7.1 (2017-03-31) +========================== + +* bugfix: [DataModel] fixed default value of Pad container +* bugfix: [TestList] fix string representation for some test ranges +* new feature: [DataModel] BitField now supports full range mutation +* enhancement: [EmptyController] now have a default name + Version 0.7.0 (2016-11-11) ========================== diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index c79a0fb..cd52e17 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -9,7 +9,6 @@ we only benefit from contribution. However, we want to keep Kitty stable, documented and easy to read. At this point, this guide is rather short, so please read it from start to end. -it will Code ---- @@ -102,4 +101,4 @@ So we require a few things in pull requests. (respectively). -That's it, and thanks for your help! \ No newline at end of file +That's it, and thanks for your help! diff --git a/docs/source/conf.py b/docs/source/conf.py index aefe190..8a5fb3e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -63,9 +63,9 @@ # built documents. # # The short X.Y version. -version = '0.7.0' +version = '0.7.1' # The full version, including alpha/beta/rc tags. -release = '0.7.0' +release = '0.7.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 55577e2..afc5fdb 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() -VERSION = '0.7.0' +VERSION = '0.7.1' AUTHOR = 'Cisco SAS team' EMAIL = 'kitty-fuzzer@googlegroups.com' URL = 'https://github.com/cisco-sas/kitty.git'