Skip to content

Commit

Permalink
Prepare v1.14.8 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kirsle committed Sep 5, 2017
1 parent 21f52ac commit 303d607
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

Revision history for the Python package RiveScript.

## 1.14.8 - Sept 5 2017

This release focuses on bug fixes and backwards compatible improvements.

- Improvements to the new trigger sorting algorithm:
- Triggers containing no text (wildcards only) are sorted nearer to the end
(bug #94)
- Trigger components containing an empty string between pipes (e.g. `[|]`) now
raises a syntax error at parsing time (bug #87)
- Fix the parsing of `^` when used on a `+Trigger` not being fully evaluated
before syntax checking for the trigger was done (bug #86)
- Remove extra space characters inside optionals (bug #98)
- Improve the syntax checker by having it raise errors when certain "tag
characters" are mismatched or opened and closed in the wrong order -- for
example `{<}>` (PR #103)
- Fix the `deparse()` and `write()` functions so they work again with the
latest version of RiveScript (bug #76)

## 1.14.7 - May 19 2017

- Various fixes and improvements that catch RiveScript-Python up with the other
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.7
Version: 1.14.8
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.7'
__version__ = '1.14.8'

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

0 comments on commit 303d607

Please sign in to comment.