Skip to content

Commit

Permalink
Prepare v1.18.0 for release
Browse files Browse the repository at this point in the history
kirsle committed Nov 27, 2017

Verified

This commit was signed with the committer’s verified signature. The key has expired.
kaloudis Evan Kaloudis
1 parent 64e7f55 commit 2d1a81d
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changes

* 1.18.0 2017-11-27
- Fix an infinite loop when using a number as a substitution (PR #206)
- Optimize substitution algorithm (including person substitutions) to be
more performant when you have a large set of substitutions defined (PR #208)
- Add support for defining a global concatenation option when constructing
the RiveScript object. This will set the default concat mode when
parsing files that didn't define their own local mode (PR #209)
- Add API function `lastTriggers(username)` to retrieve the full set of
triggers that were last matched for that user. For example, if some triggers
redirected to others, all the triggers that were touched will be
returned by this function (PR #217)
- Remove dependency on jQuery for loading files in a web environment and
instead use a standard `XMLHttpRequest` (PR #251)

* 1.17.2 2017-01-19
- Fix `<call>` tags not working inside of the `@Redirect` command and the
inline redirect `{@}` tag. Note that only *synchronous* object macros that
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rivescript",
"version": "1.17.2",
"version": "1.18.0",
"description": "RiveScript is a scripting language for chatterbots, making it easy to write trigger/response pairs for building up a bot's intelligence.",
"keywords": [
"bot",
2 changes: 1 addition & 1 deletion src/rivescript.coffee
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
##

# Constants
VERSION = "1.17.2"
VERSION = "1.18.0"

# Helper modules
Parser = require "./parser"

0 comments on commit 2d1a81d

Please sign in to comment.