Skip to content

Commit 303d607

Browse files
committed
Prepare v1.14.8 for release
1 parent 21f52ac commit 303d607

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

Changes.md

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

33
Revision history for the Python package RiveScript.
44

5+
## 1.14.8 - Sept 5 2017
6+
7+
This release focuses on bug fixes and backwards compatible improvements.
8+
9+
- Improvements to the new trigger sorting algorithm:
10+
- Triggers containing no text (wildcards only) are sorted nearer to the end
11+
(bug #94)
12+
- Trigger components containing an empty string between pipes (e.g. `[|]`) now
13+
raises a syntax error at parsing time (bug #87)
14+
- Fix the parsing of `^` when used on a `+Trigger` not being fully evaluated
15+
before syntax checking for the trigger was done (bug #86)
16+
- Remove extra space characters inside optionals (bug #98)
17+
- Improve the syntax checker by having it raise errors when certain "tag
18+
characters" are mismatched or opened and closed in the wrong order -- for
19+
example `{<}>` (PR #103)
20+
- Fix the `deparse()` and `write()` functions so they work again with the
21+
latest version of RiveScript (bug #76)
22+
523
## 1.14.7 - May 19 2017
624

725
- Various fixes and improvements that catch RiveScript-Python up with the other

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.7
6+
Version: 1.14.8
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.7'
23+
__version__ = '1.14.8'
2424

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

0 commit comments

Comments
 (0)