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

Commit

Permalink
prepare for 2.0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jbremer committed Jun 3, 2018
1 parent b843d14 commit 070ae54
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions cuckoo/compat/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ def _204_205(c):
c["auxiliary"]["mitm"]["script"] = "stuff/mitm.py"
return c

def _205_210(c):
def _205_206(c):
c["cuckoo"]["remotecontrol"] = {
"enabled": False,
"guacd_host": "localhost",
Expand All @@ -722,7 +722,7 @@ def _205_210(c):
"2.0.2": ("2.0.3", None),
"2.0.3": ("2.0.4", _203_204),
"2.0.4": ("2.0.5", _204_205),
"2.0.5": ("2.1.0", _205_210),
"2.0.5": ("2.0.6", _205_206),

# We're also capable of migrating away from 2.0-dev which basically means
# that we might have to a partial migration from either 2.0-rc2 or 2.0-rc1.
Expand Down
2 changes: 1 addition & 1 deletion cuckoo/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

# Normalized Cuckoo version (i.e., "2.0.5.3" in setup is "2.0.5" here). This
# because we use StrictVersion() later on which doesn't accept "2.0.5.3".
version = "2.0.5"
version = "2.0.6"

def set_cwd(path, raw=None):
global _root, _raw
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is part of Cuckoo Sandbox - http://www.cuckoosandbox.org
# See the file 'docs/LICENSE' for copying permission.

"""add rcparams field to machine (from Cuckoo 2.0.5.3 to 2.1)
"""add rcparams field to machine (from Cuckoo 2.0.5 to 2.0.6)
Revision ID: cb1024e614b7
Revises: 181be2111077
Expand Down
4 changes: 2 additions & 2 deletions docs/book/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
# built documents.
#
# The short X.Y version.
version = '2.0.5'
version = '2.0.6'
# The full version, including alpha/beta/rc tags.
release = '2.0.5'
release = '2.0.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def do_setup(**kwargs):

do_setup(
name="Cuckoo",
version="2.0.5.3",
version="2.0.6",
author="Stichting Cuckoo Foundation",
author_email="[email protected]",
packages=[
Expand Down
4 changes: 2 additions & 2 deletions tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@ def test_migration_204_205():

assert cfg["auxiliary"]["mitm"]["script"] == "stuff/mitm.py"

def test_migration_205_210():
def test_migration_205_206():
set_cwd(tempfile.mkdtemp())
Folders.create(cwd(), "conf")

Expand All @@ -1142,7 +1142,7 @@ def test_migration_205_210():
mode = headless
""")
cfg = Config.from_confdir(cwd("conf"), loose=True)
cfg = migrate(cfg, "2.0.5", "2.1.0")
cfg = migrate(cfg, "2.0.5", "2.0.6")

assert cfg["cuckoo"]["remotecontrol"]["enabled"] == False
assert cfg["cuckoo"]["remotecontrol"]["guacd_host"] == "localhost"
Expand Down

2 comments on commit 070ae54

@cssxn
Copy link

@cssxn cssxn commented on 070ae54 Jun 7, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the feature of the new version?

@RicoVZ
Copy link
Contributor

@RicoVZ RicoVZ commented on 070ae54 Jun 7, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @cssxn,

You will find a list of features/changes in our blog. 😄
https://cuckoosandbox.org/blog/206-interim-release.

Please sign in to comment.