Skip to content

Commit

Permalink
Prepare v1.19.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kirsle committed Mar 4, 2018
1 parent 94de8f8 commit d84485c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changes

* 1.19.0 2018-03-04
- Add the new `?Keyword` command to work around the problem that Unicode
text wouldn't match properly with optional wildcards. For example,
`+ [*] 你好 [*]` wasn't able to match messages containing the word "你好"
in the same way as it would if the keyword were using only ASCII symbols.
Now, the command `? 你好` will allow you to match that keyword anywhere in
a user's message. (PR #256)

* 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
Expand Down
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.18.0",
"version": "1.19.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",
Expand Down
2 changes: 1 addition & 1 deletion src/rivescript.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
##

# Constants
VERSION = "1.18.0"
VERSION = "1.19.0"

# Helper modules
Parser = require "./parser"
Expand Down

0 comments on commit d84485c

Please sign in to comment.