Skip to content

Commit

Permalink
Initial support for IntelliJ 2024.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hmemcpy committed Feb 23, 2024
1 parent 9b1f0e5 commit b61f4f7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: CI
on:
push:
branches:
- idea223.x
- idea231.x
- idea232.x
- idea233.x
- idea241.x
pull_request:

jobs:
Expand Down
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,6 @@ A note about support: this plugin is maintained for the last two IntelliJ IDEA v

To continue enjoying new features, please upgrade to the latest available IntellJ version!

**Currently supported**:
* 2023.3 (EAP)
* 2023.2 (current release)
* 2023.1

Previous versions are still available on the Marketplace.

### Features

The plugin has several powerful features for ZIO:
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import org.jetbrains.sbtidea.{AutoJbr, JbrPlatform}

lazy val scala213 = "2.13.10"
lazy val scalaPluginVersion = "2023.3.19"
lazy val minorVersion = "1"
lazy val scalaPluginVersion = "2024.1.1"
lazy val minorVersion = "0"
lazy val buildVersion = sys.env.getOrElse("ZIO_INTELLIJ_BUILD_NUMBER", minorVersion)
lazy val pluginVersion = s"2023.3.31.$buildVersion"
lazy val pluginVersion = s"2024.1.32.$buildVersion"

ThisBuild / intellijPluginName := "zio-intellij"
ThisBuild / intellijBuild := "233"
ThisBuild / intellijBuild := "241.8102-EAP-CANDIDATE-SNAPSHOT"
ThisBuild / jbrInfo := AutoJbr(explicitPlatform = Some(JbrPlatform.osx_aarch64))

Global / intellijAttachSources := true
Expand Down Expand Up @@ -41,7 +41,7 @@ lazy val root =
s"""<![CDATA[
<b>What's new?</b>
<ul>
<li>Added: "Click to see difference" for non-trivial test assertion failures.</li>
<li>IntelliJ IDEA 2024.1 support!</li>
</ul>
]]>"""
)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.20.3")
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.21.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<change-notes>replaced-by-build</change-notes>

<idea-version since-build="233.11799" until-build="233.*"/>
<idea-version since-build="241.8102" until-build="241.*"/>

<depends>org.intellij.scala</depends>
<depends>com.intellij.modules.java</depends>
Expand Down

0 comments on commit b61f4f7

Please sign in to comment.