Skip to content

Commit f91e65c

Browse files
committed
Prepare for the 1.2.5 release
1 parent 9c186c5 commit f91e65c

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
## [Unreleased]
66

7+
### Changed
8+
9+
- Remove upper bound for release version requirement, introduce forward compatibility starting with Rider 2025.1
10+
11+
### Fixed
12+
13+
- Fix runtime assertions related to default settings configuration
14+
715
## [1.2.4] - 2025-05-28
816

917
### Added

build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,6 @@ tasks {
270270
pluginId = properties("pluginId").get()
271271
version = properties("pluginVersion").get()
272272
sinceBuild = properties("pluginSinceBuild").get()
273-
untilBuild = properties("pluginUntilBuild").get()
274273

275274
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
276275
pluginDescription = providers.fileContents(layout.projectDirectory.file("README.md")).asText.map {

gradle.properties

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,18 @@ pluginNamespace = MSBuild.DevKit
66
dotnetBuildConfiguration = Debug
77
pluginRepositoryUrl = https://github.com/seclerp/rider-msbuild-devkit
88
# SemVer format -> https://semver.org
9-
pluginVersion = 1.2.4
9+
pluginVersion = 1.2.5
1010

1111
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
12-
pluginSinceBuild = 252
13-
pluginUntilBuild = 252.*
12+
pluginSinceBuild = 251
1413

1514
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1615
platformType = RD
1716
# Possible values (minor is omitted):
1817
# Release: 2020.2
1918
# Nightly: 2020.3-SNAPSHOT
2019
# EAP: 2020.3-EAP2-SNAPSHOT
21-
platformVersion = 2025.2-EAP2-SNAPSHOT
20+
platformVersion = 2025.1
2221

2322
# Gradle Releases -> https://github.com/gradle/gradle/releases
2423
gradleVersion = 8.13

0 commit comments

Comments
 (0)