File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33This documents the history of significant changes to ` rivescript-java ` .
44
5+ ## v0.9.2 - March 19, 2017
6+
7+ This update focuses on bug fixes.
8+
9+ * ** Changes:**
10+ * Fix for not able to get JavaScript ` ScriptEngine ` in Google App Engine
11+ local devserver using ` new ScriptEngineManager().getEngineByName(engineName) ` .
12+ Fallback mechanism added to use
13+ ` new ScriptEngineManager(null).getEngineByName(engineName) ` (#44 ).
14+
515## v0.9.1 - March 7, 2017
616
717This update focuses on bug fixes.
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ _Gradle_:
6767
6868``` groovy
6969dependencies {
70- compile "com.rivescript:rivescript-core:0.9.1 "
70+ compile "com.rivescript:rivescript-core:0.9.2 "
7171}
7272```
7373
@@ -181,15 +181,15 @@ _Maven_:
181181<dependency>
182182 <groupId>com.rivescript</groupId>
183183 <artifactId>rivescript-spring-boot-starter</artifactId>
184- <version>0.9.1 </version>
184+ <version>0.9.2 </version>
185185</dependency>
186186```
187187
188188_Gradle_:
189189
190190```groovy
191191dependencies {
192- compile "com.rivescript:rivescript-spring-boot-starter:0.9.1 "
192+ compile "com.rivescript:rivescript-spring-boot-starter:0.9.2 "
193193}
194194```
195195
Original file line number Diff line number Diff line change 1- version =0.10.0-SNAPSHOT
1+ version =0.9.2
You can’t perform that action at this time.
0 commit comments