Skip to content

Commit

Permalink
Merge branch 'release/1.0.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Feb 29, 2024
2 parents 0b033f5 + 1e967bb commit 665b2b0
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 15 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

# Validate wrapper
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1.1.0
uses: gradle/wrapper-validation-action@v2.1.1

# Setup Java environment for the next steps
- name: Setup Java
Expand All @@ -73,7 +73,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.12.0
uses: gradle/gradle-build-action@v3.1.0

# Set environment variables
- name: Export Properties
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
# Store already-built plugin as an artifact for downloading
- name: Upload artifact
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
name: ${{ steps.artifact.outputs.filename }}
path: ./build/distributions/content/*/*
Expand All @@ -147,7 +147,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.12.0
uses: gradle/gradle-build-action@v3.1.0

# Run tests
- name: Run Tests
Expand All @@ -156,14 +156,14 @@ jobs:
# Collect Tests Result of failed tests
- name: Collect Tests Result
if: ${{ failure() }}
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests

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

Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.12.0
uses: gradle/gradle-build-action@v3.1.0

# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
Expand All @@ -236,7 +236,7 @@ jobs:
# Collect Plugin Verifier Result
- name: Collect Plugin Verifier Result
if: ${{ always() }}
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
name: pluginVerifier-result
path: ${{ github.workspace }}/build/reports/pluginVerifier
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# Generate a changelog
- name: Generate a changelog
uses: orhun/git-cliff-action@v2.3.0
uses: orhun/git-cliff-action@v3.0.1
id: git-cliff
with:
config: cliff.toml
Expand All @@ -47,7 +47,7 @@ jobs:

# Create pull request
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5.0.2
uses: peter-evans/create-pull-request@v6.0.0
with:
delete-branch: true
branch-suffix: short-commit-hash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.12.0
uses: gradle/gradle-build-action@v3.1.0

# Publish the plugin to the Marketplace
- name: Publish Plugin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.12.0
uses: gradle/gradle-build-action@v3.1.0

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

## [Unreleased]
## [1.0.11]] - 2024-02-29

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.0.10] - 2024-01-28

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.0.9] - 2023-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 Hono Plugin
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-hono

# SemVer format -> https://semver.org
pluginVersion = 1.0.10
pluginVersion = 1.0.11

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 231
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ annotations = "24.1.0"
# plugins
kotlin = "1.9.22"
changelog = "2.2.0"
gradleIntelliJPlugin = "1.17.0"
gradleIntelliJPlugin = "1.17.2"
qodana = "0.1.13"
kover = "0.7.5"
kover = "0.7.6"

[libraries]
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }
Expand Down

0 comments on commit 665b2b0

Please sign in to comment.