diff --git a/CHANGES b/CHANGES index b295fe4..f09c847 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,11 @@ be Changelog ================= +Version 0.3.3 +------------- + +- Minor bugfix, broken `be activate` (time to start thinking about building a test-suite) + Version 0.3.2 ------------- diff --git a/be/cli.py b/be/cli.py index 66f9f0a..6ba0b2a 100644 --- a/be/cli.py +++ b/be/cli.py @@ -524,8 +524,7 @@ def activate(): context["BE_TABCOMPLETION"] = os.path.join( os.path.dirname(__file__), "_autocomplete.sh").replace("\\", "/") - context.pop("BE_ACTIVE") - context.pop("BE_ACTIVE") + context.pop("BE_ACTIVE", None) sys.exit(subprocess.call(cmd, env=context)) diff --git a/be/version.py b/be/version.py index 98547f2..1d327f8 100644 --- a/be/version.py +++ b/be/version.py @@ -1,7 +1,7 @@ VERSION_MAJOR = 0 VERSION_MINOR = 3 -VERSION_PATCH = 2 +VERSION_PATCH = 3 version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) version = '%i.%i.%i' % version_info