Skip to content

Commit 24bd1e3

Browse files
committed
Cut 0.9.1 release
1 parent cb07dc8 commit 24bd1e3

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
<h3>0.9.1</h3>
4+
<ul>
5+
<li>Fix buggy auto-inserted each block closing tag</li>
6+
<li>Correctly set minimum version compatibility to 2019.2</li>
7+
</ul>
8+
39
<h3>0.9.0</h3>
410
<ul>
511
<li>Connect template expressions to definitions inside script tag</li>

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ plugins {
77
apply plugin: "kotlin"
88

99
group 'dev.blachut.svelte.lang'
10-
version '0.9.0'
10+
version '0.9.1'
1111

1212
// See https://github.com/JetBrains/gradle-intellij-plugin/
1313
intellij {
1414
version 'IU-LATEST-EAP-SNAPSHOT'
15-
plugins = ['JavaScriptLanguage', 'CSS', 'PsiViewer:192-SNAPSHOT']
15+
plugins = ['JavaScriptLanguage', 'CSS', 'PsiViewer:193-SNAPSHOT']
1616
}
1717

1818
patchPluginXml {
19-
sinceBuild '191'
19+
sinceBuild '192'
2020
untilBuild '201'
2121
}
2222

src/main/resources/META-INF/plugin.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@
2121
]]></description>
2222

2323
<change-notes><![CDATA[
24+
<h3>0.9.1</h3>
25+
<ul>
26+
<li>Fix buggy auto-inserted each block closing tag</li>
27+
<li>Disallow installing plugin in unsupported 2019.1 version</li>
28+
</ul>
29+
2430
<h3>0.9.0</h3>
2531
<ul>
2632
<li>Connect template expressions to definitions inside script tag</li>

0 commit comments

Comments
 (0)