From ffbf7f8436a51f77c22f3bed75ba3bc37a5c666f Mon Sep 17 00:00:00 2001 From: Jeroen Hermans Date: Mon, 25 Mar 2019 13:37:12 +0100 Subject: [PATCH] Bump version, update changelog --- CHANGELOG.md | 9 +++++++++ pythonwhat/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09a31ae9..c754f8e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ 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.19.0 + +- `state` is now the first argument to SCT functions (instead of a keyword argument) +- functionality is shared with protowhat: + - `Reporter`, `Chain`, `F` and logic SCTs are reused + - `State` and `Feedback` inherit + - `Dispatcher` handles parsing (decoupled from `State`) + - `Test` moved + ## 2.18.1 ### Fixed diff --git a/pythonwhat/__init__.py b/pythonwhat/__init__.py index d2b6fb7f..0ea5ba40 100644 --- a/pythonwhat/__init__.py +++ b/pythonwhat/__init__.py @@ -1,3 +1,3 @@ -__version__ = "2.18.1" +__version__ = "2.19.0" from .test_exercise import test_exercise, allow_errors