From ef40b2c9bddf0bca9c5110e95315c2fb6323181e Mon Sep 17 00:00:00 2001 From: Valentin Grigorev Date: Thu, 18 Dec 2025 22:55:48 +0100 Subject: [PATCH 1/2] Update CommandLineToolsConfig.NupkgVersion to 2025.3 --- JetBrains.Profiler.SelfApi/src/Impl/CommandLineToolsConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/JetBrains.Profiler.SelfApi/src/Impl/CommandLineToolsConfig.cs b/JetBrains.Profiler.SelfApi/src/Impl/CommandLineToolsConfig.cs index 8829a46..8b3a563 100644 --- a/JetBrains.Profiler.SelfApi/src/Impl/CommandLineToolsConfig.cs +++ b/JetBrains.Profiler.SelfApi/src/Impl/CommandLineToolsConfig.cs @@ -5,7 +5,7 @@ internal static class CommandLineToolsConfig // The version (major and minor only!!!) of JetBrains.dotTrace.CommandLineTools and JetBrains.dotMemory.Console // NuGet-packages that must be downloaded. // Don't forget to update xmldoc. The xmldoc is used for injecting proper version into Init methods (inheritdoc). - /// 2023.1 - internal static readonly NuGet.SemanticVersion NupkgVersion = new(2024, 1); + /// 2025.3 + internal static readonly NuGet.SemanticVersion NupkgVersion = new(2025, 3); } } \ No newline at end of file From 5aae0527c02465d288a9a74a713308b82e575541 Mon Sep 17 00:00:00 2001 From: Valentin Grigorev Date: Fri, 19 Dec 2025 00:29:31 +0100 Subject: [PATCH 2/2] Update to macos-15-intel in build-and-test.yml because "macOS-13 based runner images are now retired" --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 74bb099..83c0486 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-22.04, macos-13, windows-latest ] + os: [ ubuntu-22.04, macos-15-intel, windows-latest ] runs-on: ${{ matrix.os }}