Skip to content

Commit 89af35d

Browse files
authored
Merge pull request #73 from picimako/150
v1.5.0
2 parents eb906e9 + 0b79644 commit 89af35d

File tree

6 files changed

+21
-26
lines changed

6 files changed

+21
-26
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,11 @@ jobs:
4949
uses: actions/setup-java@v4
5050
with:
5151
distribution: zulu
52-
java-version: 17
52+
java-version: 21
5353

5454
# Setup Gradle
5555
- name: Setup Gradle
56-
uses: gradle/actions/setup-gradle@v3
57-
with:
58-
gradle-home-cache-cleanup: true
56+
uses: gradle/actions/setup-gradle@v4
5957

6058
# Set environment variables
6159
- name: Export Properties
@@ -111,13 +109,11 @@ jobs:
111109
uses: actions/setup-java@v4
112110
with:
113111
distribution: zulu
114-
java-version: 17
112+
java-version: 21
115113

116114
# Setup Gradle
117115
- name: Setup Gradle
118-
uses: gradle/actions/setup-gradle@v3
119-
with:
120-
gradle-home-cache-cleanup: true
116+
uses: gradle/actions/setup-gradle@v4
121117

122118
# Run tests
123119
- name: Run Tests
@@ -154,13 +150,11 @@ jobs:
154150
uses: actions/setup-java@v4
155151
with:
156152
distribution: zulu
157-
java-version: 17
153+
java-version: 21
158154

159155
# Setup Gradle
160156
- name: Setup Gradle
161-
uses: gradle/actions/setup-gradle@v3
162-
with:
163-
gradle-home-cache-cleanup: true
157+
uses: gradle/actions/setup-gradle@v4
164158

165159
# Cache Plugin Verifier IDEs
166160
- name: Setup Plugin Verifier IDEs Cache

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
## [Unreleased]
66

7+
## [1.5.0]
8+
### Changed
9+
- New supported IDE version range: 2024.3 - 2025.1.*.
10+
711
## [1.4.1]
812
### Changed
913
- Removed some IntelliJ Platform internal API usage.

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ dependencies {
3434

3535
//Required for 'junit.framework.TestCase' referenced in 'com.intellij.testFramework.UsefulTestCase'
3636
testImplementation(libs.junit)
37-
testImplementation("org.assertj:assertj-core:3.26.3")
38-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0")
39-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.0")
40-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0")
37+
testImplementation("org.assertj:assertj-core:3.27.3")
38+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.4")
39+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.4")
40+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.4")
4141

4242
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
4343

@@ -106,7 +106,7 @@ intellijPlatform {
106106
intellijPlatformTesting {
107107
val runTestsInIJCommunity by intellijPlatformTesting.testIde.registering {
108108
type = IntelliJPlatformType.IntellijIdeaCommunity
109-
version = "2024.2"
109+
version = "2024.3"
110110
task {
111111
useJUnitPlatform {
112112
isScanForTestClasses = false

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
pluginGroup = com.picimako.mockitools
44
pluginName = Mockitools
55
# SemVer format -> https://semver.org
6-
pluginVersion = 1.4.1
6+
pluginVersion = 1.5.0
77

88
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
9-
pluginSinceBuild = 242
10-
pluginUntilBuild = 243.*
9+
pluginSinceBuild = 243
10+
pluginUntilBuild = 251.*
1111

1212
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1313
platformType = IC
14-
platformVersion = 2024.2
14+
platformVersion = 2024.3
1515

1616
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1717
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ junit = "4.13.2"
55
# plugins
66
changelog = "2.2.1"
77
intelliJPlatform = "2.0.1"
8-
kotlin = "1.9.25"
9-
lombok = "8.10"
8+
kotlin = "2.1.0"
9+
lombok = "8.12.1"
1010

1111
[libraries]
1212
junit = { group = "junit", name = "junit", version.ref = "junit" }

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
<id>mockitools</id>
44
<name>Mockitools</name>
55
<vendor url="https://github.com/picimako/mockitools">Tamás Balog</vendor>
6-
<version>1.4.0</version>
76
<resource-bundle>messages.MockitoolsBundle</resource-bundle>
87

9-
<description>Provides integration for the Mockito framework for Java.</description>
10-
118
<!-- please see https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html on how to target different products -->
129
<depends>com.intellij.modules.platform</depends>
1310
<depends>com.intellij.modules.java</depends>

0 commit comments

Comments
 (0)