This repository was archived by the owner on Apr 26, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed
private/db_migration/versions Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -696,7 +696,7 @@ def _204_205(c):
696696 c ["auxiliary" ]["mitm" ]["script" ] = "stuff/mitm.py"
697697 return c
698698
699- def _205_210 (c ):
699+ def _205_206 (c ):
700700 c ["cuckoo" ]["remotecontrol" ] = {
701701 "enabled" : False ,
702702 "guacd_host" : "localhost" ,
@@ -722,7 +722,7 @@ def _205_210(c):
722722 "2.0.2" : ("2.0.3" , None ),
723723 "2.0.3" : ("2.0.4" , _203_204 ),
724724 "2.0.4" : ("2.0.5" , _204_205 ),
725- "2.0.5" : ("2.1.0 " , _205_210 ),
725+ "2.0.5" : ("2.0.6 " , _205_206 ),
726726
727727 # We're also capable of migrating away from 2.0-dev which basically means
728728 # that we might have to a partial migration from either 2.0-rc2 or 2.0-rc1.
Original file line number Diff line number Diff line change 3333
3434# Normalized Cuckoo version (i.e., "2.0.5.3" in setup is "2.0.5" here). This
3535# because we use StrictVersion() later on which doesn't accept "2.0.5.3".
36- version = "2.0.5 "
36+ version = "2.0.6 "
3737
3838def set_cwd (path , raw = None ):
3939 global _root , _raw
Original file line number Diff line number Diff line change 22# This file is part of Cuckoo Sandbox - http://www.cuckoosandbox.org
33# See the file 'docs/LICENSE' for copying permission.
44
5- """add rcparams field to machine (from Cuckoo 2.0.5.3 to 2.1 )
5+ """add rcparams field to machine (from Cuckoo 2.0.5 to 2.0.6 )
66
77Revision ID: cb1024e614b7
88Revises: 181be2111077
Original file line number Diff line number Diff line change 4747# built documents.
4848#
4949# The short X.Y version.
50- version = '2.0.5 '
50+ version = '2.0.6 '
5151# The full version, including alpha/beta/rc tags.
52- release = '2.0.5 '
52+ release = '2.0.6 '
5353
5454# The language for content autogenerated by Sphinx. Refer to documentation
5555# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ def do_setup(**kwargs):
149149
150150do_setup (
151151 name = "Cuckoo" ,
152- version = "2.0.5.3 " ,
152+ version = "2.0.6 " ,
153153 author = "Stichting Cuckoo Foundation" ,
154154155155 packages = [
Original file line number Diff line number Diff line change @@ -1128,7 +1128,7 @@ def test_migration_204_205():
11281128
11291129 assert cfg ["auxiliary" ]["mitm" ]["script" ] == "stuff/mitm.py"
11301130
1131- def test_migration_205_210 ():
1131+ def test_migration_205_206 ():
11321132 set_cwd (tempfile .mkdtemp ())
11331133 Folders .create (cwd (), "conf" )
11341134
@@ -1142,7 +1142,7 @@ def test_migration_205_210():
11421142mode = headless
11431143 """ )
11441144 cfg = Config .from_confdir (cwd ("conf" ), loose = True )
1145- cfg = migrate (cfg , "2.0.5" , "2.1.0 " )
1145+ cfg = migrate (cfg , "2.0.5" , "2.0.6 " )
11461146
11471147 assert cfg ["cuckoo" ]["remotecontrol" ]["enabled" ] == False
11481148 assert cfg ["cuckoo" ]["remotecontrol" ]["guacd_host" ] == "localhost"
You can’t perform that action at this time.
0 commit comments