From 390b0a6c183fb5aaeaa0abe4c56da7f535ae67cf Mon Sep 17 00:00:00 2001 From: Max Kindritskiy Date: Mon, 16 Aug 2021 14:07:25 +0300 Subject: [PATCH] bump plugin to 0.0.8 with 212 support --- CHANGELOG.md | 3 +++ README.md | 13 +++++++++++++ gradle.properties | 6 +++--- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6d2d18..6768204 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ # intellij-lets Changelog ## [Unreleased] +### Updated +- support 212 IDE version + ## [0.0.7] ### Added - add some default completions for `shell` diff --git a/README.md b/README.md index 09c1e99..543bd80 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,19 @@ Releases flow: - when ready - publish draft release - add new section to CHANGELOG.md with new published version +## Issue new IDE compatible version + +When new IDE version is released we need to release new `lets` plugin version. + +1. Open `gradle.properties` + - change `pluginUntilBuild` to new ide version (for example from `211.*` to `212.*`) + - increment `pluginVersion` + - maybe change `platformVersion` + - maybe change `pluginVerifierIdeVersions` +2. Open `CHANGELOG.md` + - Add info to `Unreleased` section. +3. Create new branch, merge into main. + ## Linting Project uses several tools to maintain code quality diff --git a/gradle.properties b/gradle.properties index 56767b2..eace3c9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,19 +3,19 @@ pluginGroup = com.github.kindermax.intellijlets pluginName = intellij-lets -pluginVersion = 0.0.7 +pluginVersion = 0.0.8 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html#intellij-platform-based-products-of-recent-ide-versions # for insight into build numbers and IntelliJ Platform versions. pluginSinceBuild = 201 -pluginUntilBuild = 211.* +pluginUntilBuild = 212.* # Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl # See https://jb.gg/intellij-platform-builds-list for available build versions. pluginVerifierIdeVersions = 2020.2.4, 2020.3.2, 2021.1 platformType = IC -platformVersion = 2020.3 +platformVersion = 2021.1 platformDownloadSources = true # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22