From 9b8d7355dab5acb29494e8700ba2f46564c80a06 Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Sun, 20 Oct 2024 16:03:06 +0200 Subject: [PATCH] Release: prepare v2.8.0 --- CHANGELOG.md | 20 +++++++++++++++----- MAINTAINERSHIP.md | 2 +- build.gradle.kts | 3 ++- gradle.properties | 2 ++ 4 files changed, 20 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12c888d0..5202f9a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). +## [2.8.0] - 2024-10-20 +### Added +- Debugger: "verified" status for breakpoints that are successfully set. Thanks to @Fantoom for the contribution. + +### Changed +- **Requirement update:** IntelliJ Platform 2024.2 is now the minimal supported version (i.e., a downgrade, meaning we support more versions). +- Update PSScriptAnalyzer from v1.22.0 to v1.23.0. +- Update junixsocket library from v2.10.0 to v2.10.1. + ## [2.7.0] - 2024-08-21 ### Changed -- **Requirement update:** IntelliJ Platform 2024.2.0.2 is now the minimal supported version -- Update PowerShellEditorServices from v3.18.1 to v3.20.1 -- Update junixsocket library from v2.9.0 to v2.10.0 -- Update LSP4J library from v0.22.0 to v0.23.0 +- **Requirement update:** IntelliJ Platform 2024.2.0.2 is now the minimal supported version. +- Update PowerShellEditorServices from v3.18.1 to v3.20.1. +- Update junixsocket library from v2.9.0 to v2.10.0. +- Update LSP4J library from v0.22.0 to v0.23.0. ### Added - **Debugger support** based on the debugger adapter protocol from PowerShellEditorServices. @@ -288,4 +297,5 @@ Initial editor and code completion support: [2.6.0]: https://github.com/ant-druha/intellij-powershell/compare/v2.5.0...v2.6.0 [2.6.1]: https://github.com/ant-druha/intellij-powershell/compare/v2.6.0...v2.6.1 [2.7.0]: https://github.com/ant-druha/intellij-powershell/compare/v2.6.1...v2.7.0 -[Unreleased]: https://github.com/ant-druha/intellij-powershell/compare/v2.7.0...HEAD +[2.8.0]: https://github.com/ant-druha/intellij-powershell/compare/v2.7.0...v2.8.0 +[Unreleased]: https://github.com/ant-druha/intellij-powershell/compare/v2.8.0...HEAD diff --git a/MAINTAINERSHIP.md b/MAINTAINERSHIP.md index e478763a..3a77a59f 100644 --- a/MAINTAINERSHIP.md +++ b/MAINTAINERSHIP.md @@ -8,7 +8,7 @@ To release a new version, follow these steps. 1. Update the copyright year in the `README.md` file, if required. 2. Choose the new version. It should consist of three numbers (i.e. `1.0.0`). -3. Change the version number in the `build.gradle.kts` (`version = "…"`). +3. Change the version number in the `gradle.properties` (`pluginVersion=…`). 4. Make sure there's a properly formed version entry in the `CHANGELOG.md`. 5. Merge these changes via a PR. 6. Push a tag named `v` to GitHub. diff --git a/build.gradle.kts b/build.gradle.kts index 886e4d27..f5052b8c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -30,8 +30,9 @@ sourceSets { } } +val pluginVersion: String by ext.properties group = "com.intellij.plugin" -version = "2.7.0" +version = pluginVersion repositories { intellijPlatform { diff --git a/gradle.properties b/gradle.properties index e0e7f272..fa66d449 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,7 @@ kotlin.stdlib.default.dependency=false +pluginVersion=2.8.0 + # 30 MiB: maxUnpackedPluginBytes=31457280