From 714646aab4cc503d676d7a831243dcbdce4228a5 Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Sun, 29 Oct 2023 19:36:27 +0100 Subject: [PATCH] Release: prepare v2.3.0 --- CHANGELOG.md | 12 ++++++++++-- LICENSE | 1 + build.gradle.kts | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4312a009..939bc6f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,16 @@ 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/). -## [Unreleased] +## [2.3.0] - 2023-10-29 +### Changed +- The PowerShellEditorServices connection code has been refactored to not cause any UI freezes: everything was moved to background and rewritten to use non-blocking IO as much as possible + ### Fixed - [#155](https://github.com/ant-druha/intellij-powershell/issues/155): cannot start PowerShellEditorServices under the default PowerShell 5 execution policy, `Restricted` +- [#104](https://github.com/ant-druha/intellij-powershell/issues/104) (fixed partially): use less restricting flags when opening pipe connections to PowerShellEditorServices + +### Added +- [#144](https://github.com/ant-druha/intellij-powershell/issues/144): terminate the language server processes when exiting the IDE (even if the IDE was terminated abnormally) ## [2.2.0] - 2023-10-01 ### Changed @@ -191,4 +198,5 @@ Initial editor and code completion support: [2.0.10]: https://github.com/ant-druha/intellij-powershell/compare/v2.0.9...v2.0.10 [2.1.0]: https://github.com/ant-druha/intellij-powershell/compare/v2.0.10...v2.1.0 [2.2.0]: https://github.com/ant-druha/intellij-powershell/compare/v2.1.0...v2.2.0 -[Unreleased]: https://github.com/ant-druha/intellij-powershell/compare/v2.2.0...HEAD +[2.3.0]: https://github.com/ant-druha/intellij-powershell/compare/v2.2.0...v2.3.0 +[Unreleased]: https://github.com/ant-druha/intellij-powershell/compare/v2.3.0...HEAD diff --git a/LICENSE b/LICENSE index bc14ceba..df351a6b 100644 --- a/LICENSE +++ b/LICENSE @@ -187,6 +187,7 @@ identification within third-party archives. Copyright 2018 Andrey Dernov + Copyright 2023 intellij-powershell contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/build.gradle.kts b/build.gradle.kts index 9a92c441..a3a1387f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,7 +25,7 @@ sourceSets { } group = "com.intellij.plugin" -version = "2.2.0" +version = "2.3.0" repositories { mavenCentral()