Skip to content

Commit

Permalink
Prepare v1.14.6 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kirsle committed Mar 23, 2017
1 parent ab3b255 commit 572e0e4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python-rivescript.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down
2 changes: 1 addition & 1 deletion rivescript/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
__docformat__ = 'plaintext'

__all__ = ['rivescript']
__version__ = '1.14.5'
__version__ = '1.14.6'

from .rivescript import RiveScript
from .exceptions import (
Expand Down

0 comments on commit 572e0e4

Please sign in to comment.