From a977f8708b7f42c4c0d55ad8775b609d7251e048 Mon Sep 17 00:00:00 2001 From: Jeroen Hermans Date: Wed, 21 Nov 2018 10:52:09 +0100 Subject: [PATCH] Bump version, update changelog --- CHANGELOG.md | 8 +++++++- pythonwhat/__init__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74dfb0cb..6ed71871 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to the pythonwhat project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 2.18.1 + +### Fixed + +- Local setup with `setup_state` now works correctly (e.g. when the PEC contains a list comprehension) + ## 2.18.0 - Add optional `force_diagnose` parameter to `test_exercise` to force passing the `diagnose` tests in `check_correct`. @@ -333,4 +339,4 @@ s.check_object('x').has_equal_value() ### Removed -- There is no support for `keep_objs_in_env`, as nobody is using it. \ No newline at end of file +- There is no support for `keep_objs_in_env`, as nobody is using it. diff --git a/pythonwhat/__init__.py b/pythonwhat/__init__.py index a68a0aaf..e5c1c4e3 100644 --- a/pythonwhat/__init__.py +++ b/pythonwhat/__init__.py @@ -1,3 +1,3 @@ -__version__ = '2.18.0' +__version__ = '2.18.1' from .test_exercise import test_exercise, allow_errors