Skip to content

Commit

Permalink
Update plugin version (#28)
Browse files Browse the repository at this point in the history
* Update plugin version

* Update plugin version

* Update plugin version

* Update plugin version

* Update plugin version

* Update plugin version

* Update plugin version

* Update build.yml

* Update plugin version

* Update plugin version

* Update release.yml

* Update run-ui-tests.yml
  • Loading branch information
madwareru authored Dec 7, 2022
1 parent 94efa47 commit cbb90a7
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
- name: Gradle Wrapper Validation
uses: gradle/[email protected]

# Setup Java 11 environment for the next steps
# Setup Java 17 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
distribution: corretto
java-version: 17

# Set environment variables
- name: Export Properties
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
with:
ref: ${{ github.event.release.tag_name }}

# Setup Java 11 environment for the next steps
# Setup Java 17 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
distribution: corretto
java-version: 17

# Set environment variables
- name: Export Properties
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
- name: Fetch Sources
uses: actions/checkout@v3

# Setup Java 11 environment for the next steps
# Setup Java 17 environment for the next steps
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 11
distribution: corretto
java-version: 17

# Run IDEA prepared for UI testing
- name: Run IDE
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
# RON Extended Support Changelog

## [Unreleased]
### Fixed
- Updated plugin to support new versions of IDE.

## [0.2.9]
### Fixed
### Fixed
- Updated plugin to support new versions of IDE.

## [0.2.8]
Expand Down
10 changes: 4 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ plugins {
// Java support
id("java")
// Kotlin support
id("org.jetbrains.kotlin.jvm") version "1.7.10"
id("org.jetbrains.kotlin.jvm") version "1.7.22"
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
id("org.jetbrains.intellij") version "1.8.0"
id("org.jetbrains.intellij") version "1.10.0"
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
id("org.jetbrains.changelog") version "1.3.1"
}
Expand All @@ -21,11 +21,9 @@ repositories {
mavenCentral()
}

// Set the JVM language level used to compile sources and generate files - Java 11 is required since 2020.3
// Set the JVM language level used to build project. Use Java 11 for 2020.3+, and Java 17 for 2022.2+.
kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
jvmToolchain (17)
}

sourceSets["main"].java.srcDirs("src/main/gen")
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

pluginGroup = com.github.madwareru.intellijronremix
pluginName = RON Extended Support
pluginVersion = 0.2.9
pluginVersion = 0.2.10

pluginSinceBuild = 213
pluginUntilBuild = 222.*
pluginSinceBuild = 223.0
pluginUntilBuild = 223.*

platformType = IC
platformVersion = 2022.2
platformVersion = 2022.3

# Plugin Dependencies -> https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package com.github.madwareru.intellijronremix.ide.codestyle
import com.intellij.psi.codeStyle.CodeStyleSettings
import com.intellij.psi.codeStyle.CustomCodeStyleSettings

class RONCodeStyleSettings(settings: CodeStyleSettings?) : CustomCodeStyleSettings(
class RONCodeStyleSettings(settings: CodeStyleSettings) : CustomCodeStyleSettings(
"RONCodeStyleSettings",
settings
)

0 comments on commit cbb90a7

Please sign in to comment.