Skip to content

Commit

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

* 1.17.0 2016-10-11
- Fix accidental double-piped wildcards caused by missing arrays (PR #176).
- Fix tags like `{uppercase}` in the BEGIN block from affecting object macros
before they could be called (bug #178).
- In the parser, include the current topic in some common error messages, such
as syntax errors, single-character lines and unknown commands (bug #140).
- Allow `forceCase` to apply to topics too, both in the `> topic` command and
in the `{topic=...}` tag (bug #158).
- In case of deep recursion while scanning topic inheritance trees, the error
now includes the current topic that it gave up on (bug #167).

* 1.16.0 2016-09-06
- Add TypeScript declaration files (PR #162).
- Add a `--watch` option to `shell.js` to automatically reload the bot's
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 Noah Petherbridge
Copyright (c) 2016 Noah Petherbridge

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
15 changes: 4 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ See the `eg/` folder for examples.

## DOCUMENTATION

[Documentation](https://github.com/aichaos/rivescript-js/tree/master/docs) for
the module's API is available in the `docs/` directory and is browseable in
Markdown and HTML format.
There is generated Markdown and HTML documentation of the modules in the
[docs](https://github.com/aichaos/rivescript-js/tree/master/docs) folder.
The main module is at [rivescript](https://github.com/aichaos/rivescript-js/blob/master/docs/rivescript.md).

## INSTALLATION

Expand Down Expand Up @@ -128,13 +128,6 @@ function loading_error (error) {
}
```

## DOCUMENTATION

There is generated Markdown and HTML documentation of the modules in the
[docs](https://github.com/aichaos/rivescript-js/tree/master/docs) folder.
The main module is at
[rivescript](https://github.com/aichaos/rivescript-js/blob/master/docs/rivescript.md).

## UTF-8 SUPPORT

Version 1.0.5 adds **experimental** support for UTF-8 in RiveScript documents.
Expand Down Expand Up @@ -230,7 +223,7 @@ Steps for the npm maintainer of this module:
```
The MIT License (MIT)
Copyright (c) 2015 Noah Petherbridge
Copyright (c) 2016 Noah Petherbridge
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion contrib/coffeescript/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 Noah Petherbridge
Copyright (c) 2016 Noah Petherbridge

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
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.16.0",
"version": "1.17.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.16.0"
VERSION = "1.17.0"

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

0 comments on commit 2b50a87

Please sign in to comment.