diff --git a/Changes.md b/Changes.md index ed22545..4a7dc1e 100644 --- a/Changes.md +++ b/Changes.md @@ -2,6 +2,12 @@ Revision history for the Python package RiveScript. +## 1.14.6 - Mar 23 2017 + +- Fix regexp for validating RiveScript syntax to use `re.search` instead of + `re.match` (bug #82). +- Allow object macros to contain capital letters in their names (PR #83). + ## 1.14.5 - Feb 20 2017 - Bugfix when storing the user's `last_match` variable when a `%Previous` is diff --git a/python-rivescript.spec b/python-rivescript.spec index d10933d..77656ce 100644 --- a/python-rivescript.spec +++ b/python-rivescript.spec @@ -3,7 +3,7 @@ %global desc A scripting language to make it easy to write responses for a chatterbot. Name: python-%{srcname} -Version: 1.14.5 +Version: 1.14.6 Release: 1%{?dist} Summary: %{sum} diff --git a/rivescript/__init__.py b/rivescript/__init__.py index 1099e64..5acaf63 100644 --- a/rivescript/__init__.py +++ b/rivescript/__init__.py @@ -20,7 +20,7 @@ __docformat__ = 'plaintext' __all__ = ['rivescript'] -__version__ = '1.14.5' +__version__ = '1.14.6' from .rivescript import RiveScript from .exceptions import (