Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update since build for RubyMine and WebStorm #3183

Merged
merged 1 commit into from Apr 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -280,6 +280,13 @@

</details>

## v15.0.1

### Bug Fixes
* [#3183](https://github.com/KronicDeth/intellij-elixir/pull/3183) - [@vanderson139](https://github.com/vanderson139)
* Support 2023.1 RubyMine and WebStorm.
RubyMine and WebStorm have a `FIX` version of `174`, which is less than IntelliJ's `175` in IntelliJ 2023.1's builder number, `231.8109.175`.

## v15.0.0

### Incompatible Changes
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -69,7 +69,7 @@ allprojects {
changeNotes.set(bodyInnerHTML("resources/META-INF/changelog.html"))
pluginDescription.set(bodyInnerHTML("resources/META-INF/description.html"))

sinceBuild = "231.8109.175"
sinceBuild = "231.8109.174"
untilBuild = "231.*"
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,7 +1,7 @@
# Available idea versions:
# https://www.jetbrains.com/intellij-repository/releases
# https://www.jetbrains.com/intellij-repository/snapshots
baseVersion=15.0.0
baseVersion=15.0.1
ideaVersion=2023.1
# MUST stay at 1.8 for JPS (Build/Compile Project) compatibility even if JRE/JBR is newer
javaVersion=17
Expand Down
17 changes: 16 additions & 1 deletion resources/META-INF/changelog.html
@@ -1,5 +1,20 @@
<html>
<body>
<h1>v15.0.1</h1>
<ul>
<li>
<p>Bug Fixes</p>
<ul>
<li>
<p>Support 2023.1 RubyMine and WebStorm.</p>
<p>
RubyMine and WebStorm have a <code>FIX</code> version of <code>174</code>, which is less than IntelliJ's
<code>175</code> in IntelliJ 2023.1's builder number, <code>231.8109.175</code>.
</p>
</li>
</ul>
</li>
</ul>
<h1>v15.0.0</h1>
<ul>
<li>
Expand All @@ -25,7 +40,7 @@ <h1>v15.0.0</h1>
</p>
</li>
<li>Re-enable canary releases.</li>
<li>Remove duplicate dependency on `com.intellij.modules.java` plugin.</li>
<li>Remove duplicate dependency on <code>com.intellij.modules.java</code> plugin.</li>
</ul>
</li>
</ul>
Expand Down