From f8c15525ca0af10700a09b3eb148bd41ae029ade Mon Sep 17 00:00:00 2001 From: courtneycb Date: Thu, 24 Oct 2019 10:36:53 +1300 Subject: [PATCH] Update changelog and version number. --- CHANGELOG.md | 6 ++++++ codewof/config/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1f82ef60..383ad6277 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.5.0 +- Add 7 new questions. +- Fix test case in total of evens question. Fixes #101 +- Fix error in example of driver speed question. +- Add endpoints to API. + ## 1.4.0 - Add 37 new questions. diff --git a/codewof/config/__init__.py b/codewof/config/__init__.py index 1781d88aa..974bf73e2 100644 --- a/codewof/config/__init__.py +++ b/codewof/config/__init__.py @@ -1,6 +1,6 @@ """Configuration for Django system.""" -__version__ = "1.4.0" +__version__ = "1.5.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num