Skip to content

Commit 572e0e4

Browse files
committed
Prepare v1.14.6 for release
1 parent ab3b255 commit 572e0e4

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Changes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
Revision history for the Python package RiveScript.
44

5+
## 1.14.6 - Mar 23 2017
6+
7+
- Fix regexp for validating RiveScript syntax to use `re.search` instead of
8+
`re.match` (bug #82).
9+
- Allow object macros to contain capital letters in their names (PR #83).
10+
511
## 1.14.5 - Feb 20 2017
612

713
- Bugfix when storing the user's `last_match` variable when a `%Previous` is

python-rivescript.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%global desc A scripting language to make it easy to write responses for a chatterbot.
44

55
Name: python-%{srcname}
6-
Version: 1.14.5
6+
Version: 1.14.6
77
Release: 1%{?dist}
88
Summary: %{sum}
99

rivescript/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__docformat__ = 'plaintext'
2121

2222
__all__ = ['rivescript']
23-
__version__ = '1.14.5'
23+
__version__ = '1.14.6'
2424

2525
from .rivescript import RiveScript
2626
from .exceptions import (

0 commit comments

Comments
 (0)