File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33Revision 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
Original file line number Diff line number Diff line change 33%global desc A scripting language to make it easy to write responses for a chatterbot.
44
55Name: python-%{srcname }
6- Version: 1.14.7
6+ Version: 1.14.8
77Release: 1%{?dist }
88Summary: %{sum }
99
Original file line number Diff line number Diff line change 2020__docformat__ = 'plaintext'
2121
2222__all__ = ['rivescript' ]
23- __version__ = '1.14.7 '
23+ __version__ = '1.14.8 '
2424
2525from .rivescript import RiveScript
2626from .exceptions import (
You can’t perform that action at this time.
0 commit comments