Skip to content

Commit

Permalink
Merge branch 'release/1.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jan 15, 2025
2 parents 850bed8 + a9d87ff commit 1aff0a9
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 24 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,18 @@ jobs:

# Validate wrapper
- name: Gradle Wrapper Validation
uses: gradle/actions/[email protected].1
uses: gradle/actions/[email protected].2

# Set up Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.5.0
uses: actions/setup-java@v4.6.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/[email protected].1
uses: gradle/actions/[email protected].2

# Set environment variables
- name: Export Properties
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
# Store already-built plugin as an artifact for downloading
- name: Upload artifact
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.0
with:
name: ${{ steps.artifact.outputs.filename }}
path: ./build/distributions/content/*/*
Expand All @@ -137,14 +137,14 @@ jobs:

# Set up Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.5.0
uses: actions/setup-java@v4.6.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/[email protected].1
uses: gradle/actions/[email protected].2

# Run tests
- name: Run Tests
Expand All @@ -153,14 +153,14 @@ jobs:
# Collect Tests Result of failed tests
- name: Collect Tests Result
if: ${{ failure() }}
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.0
with:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests

# Upload the Kover report to CodeCov
- name: Upload Code Coverage Report
uses: codecov/[email protected].1
uses: codecov/[email protected].2
with:
files: ${{ github.workspace }}/build/reports/kover/report.xml

Expand Down Expand Up @@ -191,14 +191,14 @@ jobs:

# Set up Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.5.0
uses: actions/setup-java@v4.6.0
with:
distribution: zulu
java-version: 17

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2024.2.6
uses: JetBrains/qodana-action@v2024.3.4
with:
cache-default-branch-only: true

Expand All @@ -222,14 +222,14 @@ jobs:

# Set up Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.5.0
uses: actions/setup-java@v4.6.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/[email protected].1
uses: gradle/actions/[email protected].2

# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
Expand All @@ -245,7 +245,7 @@ jobs:
# Collect Plugin Verifier Result
- name: Collect Plugin Verifier Result
if: ${{ always() }}
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.0
with:
name: pluginVerifier-result
path: ${{ github.workspace }}/build/reports/pluginVerifier
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:

# Set up Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.5.0
uses: actions/setup-java@v4.6.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/[email protected].1
uses: gradle/actions/[email protected].2

# Set environment variables
- name: Export Properties
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

# Create pull request
- name: Create Pull Request
uses: peter-evans/[email protected].5
uses: peter-evans/[email protected].6
with:
delete-branch: true
branch-suffix: short-commit-hash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:

# Set up Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.5.0
uses: actions/setup-java@v4.6.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/[email protected].1
uses: gradle/actions/[email protected].2

# Publish the plugin to JetBrains Marketplace
- name: Publish Plugin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:

# Set up Java environment for the next steps
- name: Setup Java
uses: actions/setup-java@v4.5.0
uses: actions/setup-java@v4.6.0
with:
distribution: zulu
java-version: 17

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/[email protected].1
uses: gradle/actions/[email protected].2

# Run IDEA prepared for UI testing
- name: Run IDE
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
## [1.3.3] - 2025-01-15

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.3.2] - 2024-12-12

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pluginName = IntelliJ Next.js Plugin
pluginRepositoryUrl = https://github.com/nekofar/intellij-nextjs

# SemVer format -> https://semver.org
pluginVersion = 1.3.2
pluginVersion = 1.3.3

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 222
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ junit = "4.13.2"

# plugins
changelog = "2.2.0"
intelliJPlatform = "2.2.0"
intelliJPlatform = "2.2.1"
kotlin = "2.1.0"
kover = "0.8.3"
qodana = "2024.2.6"
kover = "0.9.1"
qodana = "2024.3.4"

[libraries]
junit = { group = "junit", name = "junit", version.ref = "junit" }
Expand Down

0 comments on commit 1aff0a9

Please sign in to comment.