Skip to content

Commit

Permalink
Merge pull request #23 from lets-cli/compat-212
Browse files Browse the repository at this point in the history
bump plugin to 0.0.8 with 212 support
  • Loading branch information
kindermax authored Aug 16, 2021
2 parents 1d22442 + 390b0a6 commit 84dfedc
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# intellij-lets Changelog

## [Unreleased]
### Updated
- support 212 IDE version

## [0.0.7]
### Added
- add some default completions for `shell`
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 84dfedc

Please sign in to comment.