Skip to content

Commit

Permalink
Merge branch 'release/1.0.23'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Feb 29, 2024
2 parents 09ef84f + e70281b commit 70c2bb1
Show file tree
Hide file tree
Showing 7 changed files with 21 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 @@ -55,7 +55,7 @@ jobs:

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

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

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.12.0
uses: gradle/gradle-build-action@v3.1.0
with:
gradle-home-cache-cleanup: true

Expand Down Expand Up @@ -117,7 +117,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 @@ -142,7 +142,7 @@ jobs:

# Setup Gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.12.0
uses: gradle/gradle-build-action@v3.1.0
with:
gradle-home-cache-cleanup: true

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].1
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@v3.1.5
uses: codecov/codecov-action@v4.1.0
with:
files: ${{ github.workspace }}/build/reports/kover/report.xml

Expand Down Expand Up @@ -226,7 +226,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 @@ -242,7 +242,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
with:
gradle-home-cache-cleanup: true

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
with:
gradle-home-cache-cleanup: true

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.0.23]] - 2024-02-29

### Bug Fixes

- Solve some minor issues and update dependencies

## [1.0.22] - 2024-01-28

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

# SemVer format -> https://semver.org
pluginVersion = 1.0.22
pluginVersion = 1.0.23

# 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 70c2bb1

Please sign in to comment.