Skip to content

Commit 9b8d735

Browse files
committed
Release: prepare v2.8.0
1 parent 7235ace commit 9b8d735

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,21 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

7+
## [2.8.0] - 2024-10-20
8+
### Added
9+
- Debugger: "verified" status for breakpoints that are successfully set. Thanks to @Fantoom for the contribution.
10+
11+
### Changed
12+
- **Requirement update:** IntelliJ Platform 2024.2 is now the minimal supported version (i.e., a downgrade, meaning we support more versions).
13+
- Update PSScriptAnalyzer from v1.22.0 to v1.23.0.
14+
- Update junixsocket library from v2.10.0 to v2.10.1.
15+
716
## [2.7.0] - 2024-08-21
817
### Changed
9-
- **Requirement update:** IntelliJ Platform 2024.2.0.2 is now the minimal supported version
10-
- Update PowerShellEditorServices from v3.18.1 to v3.20.1
11-
- Update junixsocket library from v2.9.0 to v2.10.0
12-
- Update LSP4J library from v0.22.0 to v0.23.0
18+
- **Requirement update:** IntelliJ Platform 2024.2.0.2 is now the minimal supported version.
19+
- Update PowerShellEditorServices from v3.18.1 to v3.20.1.
20+
- Update junixsocket library from v2.9.0 to v2.10.0.
21+
- Update LSP4J library from v0.22.0 to v0.23.0.
1322

1423
### Added
1524
- **Debugger support** based on the debugger adapter protocol from PowerShellEditorServices.
@@ -288,4 +297,5 @@ Initial editor and code completion support:
288297
[2.6.0]: https://github.com/ant-druha/intellij-powershell/compare/v2.5.0...v2.6.0
289298
[2.6.1]: https://github.com/ant-druha/intellij-powershell/compare/v2.6.0...v2.6.1
290299
[2.7.0]: https://github.com/ant-druha/intellij-powershell/compare/v2.6.1...v2.7.0
291-
[Unreleased]: https://github.com/ant-druha/intellij-powershell/compare/v2.7.0...HEAD
300+
[2.8.0]: https://github.com/ant-druha/intellij-powershell/compare/v2.7.0...v2.8.0
301+
[Unreleased]: https://github.com/ant-druha/intellij-powershell/compare/v2.8.0...HEAD

MAINTAINERSHIP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To release a new version, follow these steps.
88

99
1. Update the copyright year in the `README.md` file, if required.
1010
2. Choose the new version. It should consist of three numbers (i.e. `1.0.0`).
11-
3. Change the version number in the `build.gradle.kts` (`version = "…"`).
11+
3. Change the version number in the `gradle.properties` (`pluginVersion=…`).
1212
4. Make sure there's a properly formed version entry in the `CHANGELOG.md`.
1313
5. Merge these changes via a PR.
1414
6. Push a tag named `v<VERSION>` to GitHub.

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ sourceSets {
3030
}
3131
}
3232

33+
val pluginVersion: String by ext.properties
3334
group = "com.intellij.plugin"
34-
version = "2.7.0"
35+
version = pluginVersion
3536

3637
repositories {
3738
intellijPlatform {

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
kotlin.stdlib.default.dependency=false
22

3+
pluginVersion=2.8.0
4+
35
# 30 MiB:
46
maxUnpackedPluginBytes=31457280
57

0 commit comments

Comments
 (0)