diff --git a/.travis.yml b/.travis.yml
index 05c353ca8..39dd924a6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,6 +15,6 @@ script: make test
env:
- IDEA_VERSION=13.1.6
- IDEA_VERSION=14.0.4
- - IDEA_VERSION=14.1.4
+ - IDEA_VERSION=14.1.6
notifications:
email: false
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e3172750a..71a4ce504 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,15 @@
#Changelog
- Warning: This plugin will NOT work correctly using IDEA version 14.1.2. It works well with
- versions 14.1 and 14.1.1, 14.1.3, and 14.1.4.
+ Warning: The 14.1 version of this plugin will NOT work correctly using IDEA version 14.1.2.
+ It works well with versions 14.1, 14.1.1, 14.1.3, and 14.1.4. The version 14.1.5 version
+ of the plugin is for IDEA versions 14.1.5 and 14.1.6.
+ 0.9.8: (community release)
+
+ - Version 14.1.5 and 14.1.6 compatibility.
+ - Fix up some expressions to ignore non-error messages.
+ - Fix comment alignment for single-line comments.(Issue #295)
+
0.9.7: (community release)
- Fix the watch pane when debugging: typing and completion now work.
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index 424ed7e94..be2b84a91 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -1,13 +1,12 @@
Recent contributors
-----------------------------------
- as3boyan
- - AS3Boyan
- - bjitivo
- Carlos Ballesteros Velasco
- EBatTiVo
- Eric B
- Gabor Csomak
- giabao
+ - isBatak
- Jérémy Faivre
- jeremyfa
- sganapavarapu1
@@ -49,6 +48,7 @@ All contributors
- Gregory.Shrago
- Hays Clark
- impaler
+- isBatak
- Jérémy Faivre
- jeremyfa
- kirill.safonov
diff --git a/common.xml b/common.xml
index 38ad0c155..ccb7ab390 100644
--- a/common.xml
+++ b/common.xml
@@ -235,6 +235,8 @@
Using IDEA build at "${idea.ultimate.build}"
Idea property file is ${plugin.properties.file}
Including version specific code from ${version.specific.code.location}
+ The minimum IDEA version required to install will be ${plugin.installable.since}
+ The maximum IDEA version allowed to install will be ${plugin.installable.until}
diff --git a/idea_v14.properties b/idea_v14.properties
index 4ec0e6cb9..55530a1f9 100644
--- a/idea_v14.properties
+++ b/idea_v14.properties
@@ -7,7 +7,7 @@
idea.version=14.0
# Human-readable versions of IDEA that this build is compatible with.
-plugin.compatibility.description=IDEA 14
+plugin.compatibility.description=IDEA 14.0
# ###################################################
diff --git a/src/META-INF/plugin.xml b/src/META-INF/plugin.xml
index e3e6d4762..2935a11df 100644
--- a/src/META-INF/plugin.xml
+++ b/src/META-INF/plugin.xml
@@ -29,12 +29,18 @@
com.intellij.flex
com.intellij.modules.ultimate
- 0.9.7 for @plugin.compatibility.description@
+ 0.9.8 for @plugin.compatibility.description@
This build is compatible with @plugin.compatibility.description@
It was built using IDEA build @idea.sdk.version@
+ 0.9.8: (community release)
+
+ - Version 14.1.5 and 14.1.6 compatibility.
+ - Fix up some expressions to ignore non-error messages.
+ - Fix comment alignment for single-line comments.(Issue #295)
+
0.9.7: (community release)
- Fix the watch pane when debugging: typing and completion now work.