Skip to content

Commit

Permalink
Prepare v1.8.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kirsle committed Mar 18, 2016
1 parent a086924 commit df9ab16
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changes

* 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,
even if it contains spaces.
- Update all internal user variable getting/setting to use the public
`setUservar()` and `getUservar()` methods, enabling developers to override
the implementation of these functions.
- Fix a bug when looking for `%Previous` tags, so that if the current topic
has no `%Previous` trigger RiveScript won't bother looking for them.

* 1.6.0 2016-03-08
- Update the `deparse()` and `stringify()` functions to include the source
code of JavaScript object macros in the output.
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.6.0",
"version": "1.8.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.6.0"
VERSION = "1.8.0"

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

0 comments on commit df9ab16

Please sign in to comment.