From edc5dda15f685012a75014007d9e1849e7d18e89 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 07:42:38 +0330 Subject: [PATCH 1/4] ci(deps): bump actions/checkout from 4.1.0 to 4.1.1 (#62) Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.0...v4.1.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 10 +++++----- .github/workflows/changelog.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/run-ui-tests.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 09e8b23..e49ea28 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,7 +58,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 # Validate wrapper - name: Gradle Wrapper Validation @@ -136,7 +136,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 # Setup Java environment for the next steps - name: Setup Java @@ -180,7 +180,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 # Setup Java environment for the next steps - name: Setup Java @@ -209,7 +209,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 # Setup Java environment for the next steps - name: Setup Java @@ -254,7 +254,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 # Setup Java environment for the next steps - name: Setup Java diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 2e9ff04..62bd954 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -16,7 +16,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0832728..4ba0260 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: ref: ${{ github.event.release.tag_name }} diff --git a/.github/workflows/run-ui-tests.yml b/.github/workflows/run-ui-tests.yml index d18eece..5ed3342 100644 --- a/.github/workflows/run-ui-tests.yml +++ b/.github/workflows/run-ui-tests.yml @@ -33,7 +33,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 # Setup Java environment for the next steps - name: Setup Java From 69a25b0568f108d441a9fac1fb8f9502438805d7 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Sun, 29 Oct 2023 11:35:21 +0330 Subject: [PATCH 2/4] build: change `pluginUntilBuild` from `232.*` to `233.*` Signed-off-by: Milad Nekofar --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 53cab51..9e1fa91 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ pluginVersion = 1.0.17 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 222 -pluginUntilBuild = 232.* +pluginUntilBuild = 233.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IU From db273e3bb4ba9588cc3a206a0e3d2238d094df35 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Sun, 29 Oct 2023 13:10:37 +0330 Subject: [PATCH 3/4] fix: solve some minor issues and update dependencies Signed-off-by: Milad Nekofar From 212c139f10e700975cd41306db6850d83b8f1a20 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Sun, 29 Oct 2023 13:11:22 +0330 Subject: [PATCH 4/4] chore(release): prepare for version 1.0.18 --- CHANGELOG.md | 6 ++++++ gradle.properties | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e709d9..5c94fca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.0.18] - 2023-10-29 + +### Bug Fixes + +- Solve some minor issues and update dependencies + ## [1.0.17] - 2023-10-15 ### Bug Fixes diff --git a/gradle.properties b/gradle.properties index 9e1fa91..5ed6513 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ pluginName = IntelliJ Tauri Plugin pluginRepositoryUrl = https://github.com/KartanHQ/intellij-tauri # SemVer format -> https://semver.org -pluginVersion = 1.0.17 +pluginVersion = 1.0.18 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 222