Skip to content

Commit

Permalink
Prepare v1.12.2 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kirsle committed May 16, 2016
1 parent 74c5e52 commit dfdf71c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changes

* 1.12.2 2016-05-16
- Call the error handler on `loadDirectory()` when the directory doesn't exist
or isn't a directory (bug #117).
- Include the `dist/` directory on npm for easy web browser embedding using
npmcdn.

* 1.12.1 2016-05-05
- Fix the `<call>...</call>` regular expression to match line break characters
and preserve them in the argument list sent to an object macro (bug #108).
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.12.1",
"version": "1.12.2",
"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.12.1"
VERSION = "1.12.2"

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

0 comments on commit dfdf71c

Please sign in to comment.