Skip to content

Commit

Permalink
Bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
hermansje committed Mar 25, 2019
1 parent b18a507 commit cd321d1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to the protowhat project will be documented in this file.

## 1.6.0

This release enables protowhat to be the base for pythonwhat.

- `do_test` now runs a `Test` as in pythonwhat, instead of accepting a feedback string.
- the explicit Fail subclass should be used instead of relying on the old default implementation of `Test`
- the `report(feedback: Feedback)` method on the `State` class reintroduces a short way to gather exercise feedback,
equivalent to `do_test(Fail(Feedback(msg)))`, while also setting highlight info.
- the `legacy_signature` decorator enables to call a function using old argument names
when they are passed as keyword arguments
- AST utils to dump and load a tree structure to be used in e.g. dispatching are improved

## 1.5.0

- Update parsing class interface for compatibility with antlr-ast
Expand Down
2 changes: 1 addition & 1 deletion protowhat/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.5.0"
__version__ = "1.6.0"

0 comments on commit cd321d1

Please sign in to comment.