Skip to content
This repository was archived by the owner on Apr 26, 2021. It is now read-only.

Commit 070ae54

Browse files
committed
prepare for 2.0.6 release
1 parent b843d14 commit 070ae54

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

cuckoo/compat/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.

cuckoo/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
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

3838
def set_cwd(path, raw=None):
3939
global _root, _raw

cuckoo/private/db_migration/versions/from_2_0_5_3_to_2_1_add_machine_rcparams.py renamed to cuckoo/private/db_migration/versions/from_205_to_206_add_machine_rcparams.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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
77
Revision ID: cb1024e614b7
88
Revises: 181be2111077

docs/book/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
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.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def do_setup(**kwargs):
149149

150150
do_setup(
151151
name="Cuckoo",
152-
version="2.0.5.3",
152+
version="2.0.6",
153153
author="Stichting Cuckoo Foundation",
154154
author_email="cuckoo@cuckoofoundation.org",
155155
packages=[

tests/test_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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():
11421142
mode = 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"

0 commit comments

Comments
 (0)