Skip to content

Commit

Permalink
Update to 2024.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Socolin committed Nov 17, 2024
1 parent f9917c0 commit f921b34
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ 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/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 2024.3.0 - 2024-11-17
- Rider 2024.3

## 2024.2.0 - 2024-07-25
- Rider 2024.2-EAP9-SNAPSHOT

Expand Down
1 change: 1 addition & 0 deletions NSubstituteComplete.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ProjectSection(SolutionItems) = preProject
build.gradle.kts = build.gradle.kts
settings.gradle.kts = settings.gradle.kts
gradle\libs.versions.toml = gradle\libs.versions.toml
gradle\wrapper\gradle-wrapper.properties = gradle\wrapper\gradle-wrapper.properties
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReSharperPlugin.NSubstituteComplete.Tests", "src\dotnet\ReSharperPlugin.NSubstituteComplete.Tests\ReSharperPlugin.NSubstituteComplete.Tests.csproj", "{01C3DEF5-50B2-47CB-9467-19BC6DDF9D3D}"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pluginVersion=2024.2.0
pluginVersion=2024.3.0

# https://www.jetbrains.com/intellij-repository/snapshots
riderSdkVersion=2024.2-EAP8-SNAPSHOT
riderSdkVersion=2024.3
untilBuildVersion=243.*

buildConfiguration=Debug
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
# https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library
kotlin = "1.9.24"
rdGen = "2024.1.1"
kotlin = "2.0.21"
rdGen = "2024.3.1"

[libraries]
kotlinStdLib = { group = "org.jetbrains.kotlin", name = "kotlin-stdlib", version.ref = "kotlin" }
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion src/dotnet/Plugin.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<SdkVersion>2024.2.0-eap08</SdkVersion>
<SdkVersion>2024.3.0</SdkVersion>

<Title>NSubstituteComplete</Title>
<Description>Provide quick fixes and smart autocomplete when using NSubstitute</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@

<ItemGroup>
<PackageReference Include="JetBrains.ReSharper.SDK.Tests" Version="$(SdkVersion)" />
<PackageReference Include="NSubstitute" Version="4.2.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Update="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using JetBrains.IDE.UI.Extensions.Properties;
using JetBrains.IDE.UI.Options;
using JetBrains.Lifetimes;
using JetBrains.Platform.RdFramework.RdVerification;
using JetBrains.ProjectModel;
using JetBrains.ReSharper.Feature.Services.UI.Automation;
using JetBrains.ReSharper.Psi.CSharp;
Expand Down

0 comments on commit f921b34

Please sign in to comment.