Skip to content

Commit 4f64dc6

Browse files
committed
Merge branch 'release/1.3.6'
2 parents 5e846d0 + 0b4165d commit 4f64dc6

File tree

8 files changed

+17
-11
lines changed

8 files changed

+17
-11
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565

6666
# Set up Java environment for the next steps
6767
- name: Setup Java
68-
uses: actions/setup-java@v4.7.0
68+
uses: actions/setup-java@v4.7.1
6969
with:
7070
distribution: zulu
7171
java-version: 17
@@ -137,7 +137,7 @@ jobs:
137137

138138
# Set up Java environment for the next steps
139139
- name: Setup Java
140-
uses: actions/setup-java@v4.7.0
140+
uses: actions/setup-java@v4.7.1
141141
with:
142142
distribution: zulu
143143
java-version: 17
@@ -160,7 +160,7 @@ jobs:
160160

161161
# Upload the Kover report to CodeCov
162162
- name: Upload Code Coverage Report
163-
uses: codecov/codecov-action@v5.4.0
163+
uses: codecov/codecov-action@v5.4.2
164164
with:
165165
files: ${{ github.workspace }}/build/reports/kover/report.xml
166166

@@ -191,7 +191,7 @@ jobs:
191191

192192
# Set up Java environment for the next steps
193193
- name: Setup Java
194-
uses: actions/setup-java@v4.7.0
194+
uses: actions/setup-java@v4.7.1
195195
with:
196196
distribution: zulu
197197
java-version: 17
@@ -222,7 +222,7 @@ jobs:
222222

223223
# Set up Java environment for the next steps
224224
- name: Setup Java
225-
uses: actions/setup-java@v4.7.0
225+
uses: actions/setup-java@v4.7.1
226226
with:
227227
distribution: zulu
228228
java-version: 17

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
# Set up Java environment for the next steps
2424
- name: Setup Java
25-
uses: actions/setup-java@v4.7.0
25+
uses: actions/setup-java@v4.7.1
2626
with:
2727
distribution: zulu
2828
java-version: 17

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
# Set up Java environment for the next steps
2828
- name: Setup Java
29-
uses: actions/setup-java@v4.7.0
29+
uses: actions/setup-java@v4.7.1
3030
with:
3131
distribution: zulu
3232
java-version: 17

.github/workflows/run-ui-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
# Set up Java environment for the next steps
3939
- name: Setup Java
40-
uses: actions/setup-java@v4.7.0
40+
uses: actions/setup-java@v4.7.1
4141
with:
4242
distribution: zulu
4343
java-version: 17

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
6+
## [1.3.6] - 2025-04-23
7+
8+
### Bug Fixes
9+
10+
- Solve some minor issues and update dependencies
11+
612
## [1.3.5] - 2025-03-31
713

814
### Bug Fixes

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies {
4444
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
4545

4646
instrumentationTools()
47-
pluginVerifier()
47+
pluginVerifier(version="1.383")
4848
zipSigner()
4949
testFramework(TestFrameworkType.Platform)
5050
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pluginName = IntelliJ Next.js Plugin
55
pluginRepositoryUrl = https://github.com/nekofar/intellij-nextjs
66

77
# SemVer format -> https://semver.org
8-
pluginVersion = 1.3.5
8+
pluginVersion = 1.3.6
99

1010
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
pluginSinceBuild = 222

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
rootProject.name = "intellij-nextjs"
22

33
plugins {
4-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
4+
id("org.gradle.toolchains.foojay-resolver-convention") version "0.10.0"
55
}

0 commit comments

Comments
 (0)