From be98cec5c90bc03820a96920b7e547473237c9d3 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Mon, 7 Oct 2024 00:07:53 +0400 Subject: [PATCH 1/3] chore(build): format `channels` map for readability Reformat `channels` map assignment for improved readability. --- build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 5e6617c..55eb804 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -98,7 +98,8 @@ intellijPlatform { // The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3 // Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more: // https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel - channels = providers.gradleProperty("pluginVersion").map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) } + channels = providers.gradleProperty("pluginVersion") + .map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) } } pluginVerification { From 219e955182121bd8567565d905a966986c043ac5 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Mon, 7 Oct 2024 09:59:46 +0400 Subject: [PATCH 2/3] fix: solve some minor issues and update dependencies Signed-off-by: Milad Nekofar From 0054f22fc6930995ff696ebc8dfaa60c45d09200 Mon Sep 17 00:00:00 2001 From: Milad Nekofar Date: Mon, 7 Oct 2024 09:59:53 +0400 Subject: [PATCH 3/3] chore(release): prepare for version 1.1.2 --- CHANGELOG.md | 6 ++++++ gradle.properties | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ac4394..bc30965 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.1.2] - 2024-10-07 + +### Bug Fixes + +- Solve some minor issues and update dependencies + ## [1.1.0] - 2024-10-06 ### Bug Fixes diff --git a/gradle.properties b/gradle.properties index efc8466..d3fa288 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.1.0 +pluginVersion = 1.1.2 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 233