Skip to content

Commit

Permalink
Merge branch 'release/1.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Dec 10, 2024
2 parents 3e49288 + c065697 commit d378cca
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 35 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,22 +57,22 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2

# Validate wrapper
- name: Gradle Wrapper Validation
uses: gradle/actions/wrapper-validation@v4.1.0
uses: gradle/actions/wrapper-validation@v4.2.1

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

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4.1.0
uses: gradle/actions/setup-gradle@v4.2.1

# 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/[email protected].0
uses: actions/[email protected].3
with:
name: ${{ steps.artifact.outputs.filename }}
path: ./build/distributions/content/*/*
Expand All @@ -133,18 +133,18 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2

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

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4.1.0
uses: gradle/actions/setup-gradle@v4.2.1

# 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/[email protected].0
uses: actions/[email protected].3
with:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests

# Upload the Kover report to CodeCov
- name: Upload Code Coverage Report
uses: codecov/codecov-action@v4.6.0
uses: codecov/codecov-action@v5.1.1
with:
files: ${{ github.workspace }}/build/reports/kover/report.xml

Expand All @@ -184,21 +184,21 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2
with:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
fetch-depth: 0 # a full history is required for pull request analysis

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

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/[email protected].3
uses: JetBrains/[email protected].6
with:
cache-default-branch-only: true

Expand All @@ -218,22 +218,22 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2

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

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4.1.0
uses: gradle/actions/setup-gradle@v4.2.1

# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
uses: actions/cache@v4.1.0
uses: actions/cache@v4.2.0
with:
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
Expand All @@ -245,7 +245,7 @@ jobs:
# Collect Plugin Verifier Result
- name: Collect Plugin Verifier Result
if: ${{ always() }}
uses: actions/[email protected].0
uses: actions/[email protected].3
with:
name: pluginVerifier-result
path: ${{ github.workspace }}/build/reports/pluginVerifier
Expand All @@ -263,7 +263,7 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2

# Remove old release drafts by using the curl request for the available releases with a draft flag
- name: Remove Old Release Drafts
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2
with:
fetch-depth: 0

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

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4.1.0
uses: gradle/actions/setup-gradle@v4.2.1

# Set environment variables
- name: Export Properties
Expand All @@ -43,7 +43,7 @@ jobs:
# Generate a changelog
- name: Generate a changelog
uses: orhun/git-cliff-action@v4.3.0
uses: orhun/git-cliff-action@v4.4.2
id: git-cliff
with:
config: cliff.toml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it
- name: Checkout Repository Code
uses: actions/[email protected].0
uses: actions/[email protected].2

# This step uses the Git Flow Action to create PRs based on branch types
- name: Execute Git Flow Action
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2
with:
ref: ${{ github.event.release.tag_name }}

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

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4.1.0
uses: gradle/actions/setup-gradle@v4.2.1

# Publish the plugin to JetBrains Marketplace
- name: Publish Plugin
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 @@ -33,18 +33,18 @@ jobs:

# Check out the current repository
- name: Fetch Sources
uses: actions/[email protected].0
uses: actions/[email protected].2

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

# Setup Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4.1.0
uses: gradle/actions/setup-gradle@v4.2.1

# 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.2] - 2024-12-10

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.3.1] - 2024-10-07

### 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 Hardhat Plugin
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-hardhat

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

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 233
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.1.2"
intelliJPlatform = "2.1.0"
kotlin = "2.0.20"
intelliJPlatform = "2.2.0"
kotlin = "2.1.0"
kover = "0.8.3"
qodana = "2024.2.3"
qodana = "2024.2.6"

[libraries]
junit = { group = "junit", name = "junit", version.ref = "junit" }
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rootProject.name = "intellij-hardhat"

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
}

0 comments on commit d378cca

Please sign in to comment.