diff --git a/Changes.md b/Changes.md index dbe566f..c888877 100644 --- a/Changes.md +++ b/Changes.md @@ -1,5 +1,11 @@ # Changes +* 1.17.2 2017-01-19 + - Fix `` 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 diff --git a/LICENSE b/LICENSE index 3b5b6eb..cabbc44 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/README.md b/README.md index d3d14ed..73bffb5 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/contrib/coffeescript/LICENSE b/contrib/coffeescript/LICENSE index 3b5b6eb..cabbc44 100644 --- a/contrib/coffeescript/LICENSE +++ b/contrib/coffeescript/LICENSE @@ -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 diff --git a/contrib/coffeescript/README.md b/contrib/coffeescript/README.md index b2c9841..cf4543e 100644 --- a/contrib/coffeescript/README.md +++ b/contrib/coffeescript/README.md @@ -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 diff --git a/package.json b/package.json index 2f2a7ce..2326904 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/rivescript.coffee b/src/rivescript.coffee index 16dbfba..dcbacb4 100644 --- a/src/rivescript.coffee +++ b/src/rivescript.coffee @@ -7,7 +7,7 @@ "use strict" # Constants -VERSION = "1.17.1" +VERSION = "1.17.2" # Helper modules Parser = require "./parser"