Skip to content

Commit

Permalink
Prepare v1.10.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kirsle committed Mar 30, 2016
1 parent dd28d14 commit 5f08bad
Show file tree
Hide file tree
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.10.0 2016-03-30
- Fix a bug where `! local concat` settings wouldn't apply to the first
continuation of a conditional (bug #88)
- Add the ability to override certain common error messages with custom text,
for the cases where a trigger wasn't matched, when a trigger *was* matched
but no reply was given, when an object macro wasn't found, and when deep
recursion errors arise (bug #90)
- Fix a bug where the `<@>` syntax for a redirect fails when `<star1>` is
undefined (bug #92)
- Fix the `stringify()` function to escape newline characters so that the
resulting code doesn't have syntax errors when reloading it (bug #95)
- Fix some triggers in the default example brain to account for substitution
on the bot's previous reply (bug #87)

* 1.8.0 2016-03-18
- Update the way the `args` array works in JavaScript object macros: it now
uses a shell-style array where quoted strings come in as one array element,
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.8.0",
"version": "1.10.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 @@ -7,7 +7,7 @@
"use strict"

# Constants
VERSION = "1.8.0"
VERSION = "1.10.0"

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

0 comments on commit 5f08bad

Please sign in to comment.