Skip to content

Commit

Permalink
Prepare v1.17.2 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
kirsle committed Jan 19, 2017
1 parent ea760f0 commit 256dc09
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 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.17.2 2017-01-19
- Fix `<call>` tags not working inside of the `@Redirect` command and the
inline redirect `{@}` tag. Note that only *synchronous* object macros that
return a string response are allowed in these, just like in `*Condition`
commands (PR #203)

* 1.17.1 2016-12-08
- Fix sorting algorithm for triggers with `%Previous`, making their sort order
deterministic and correct regardless of the order they appeared in the
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) 2016 Noah Petherbridge
Copyright (c) 2017 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ Steps for the npm maintainer of this module:
```
The MIT License (MIT)
Copyright (c) 2016 Noah Petherbridge
Copyright (c) 2017 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) 2016 Noah Petherbridge
Copyright (c) 2017 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/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ example code above to register it via `setHandler()`.
```
The MIT License (MIT)
Copyright (c) 2016 Noah Petherbridge
Copyright (c) 2017 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.17.1",
"version": "1.17.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.17.1"
VERSION = "1.17.2"

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

0 comments on commit 256dc09

Please sign in to comment.