File tree 3 files changed +20
-2
lines changed
3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Revision history for the Python package RiveScript.
4
4
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
+
5
23
## 1.14.7 - May 19 2017
6
24
7
25
- Various fixes and improvements that catch RiveScript-Python up with the other
Original file line number Diff line number Diff line change 3
3
%global desc A scripting language to make it easy to write responses for a chatterbot.
4
4
5
5
Name: python-%{srcname }
6
- Version: 1.14.7
6
+ Version: 1.14.8
7
7
Release: 1%{?dist }
8
8
Summary: %{sum }
9
9
Original file line number Diff line number Diff line change 20
20
__docformat__ = 'plaintext'
21
21
22
22
__all__ = ['rivescript' ]
23
- __version__ = '1.14.7 '
23
+ __version__ = '1.14.8 '
24
24
25
25
from .rivescript import RiveScript
26
26
from .exceptions import (
You can’t perform that action at this time.
0 commit comments