diff --git a/.azure-pipelines/ultimate-pipeline.yml b/.azure-pipelines/ultimate-pipeline.yml
index b0953827bd20..fb167c21601a 100644
--- a/.azure-pipelines/ultimate-pipeline.yml
+++ b/.azure-pipelines/ultimate-pipeline.yml
@@ -135,7 +135,7 @@ variables:
DD_LOGGER_DD_TAGS: test.configuration.job:$(System.JobDisplayName)
DD_LOGGER_ENABLED: true
DD_COLLECTOR_CPU_USAGE: true
- ToolVersion: 3.32.0
+ ToolVersion: 3.33.0
# .NET SDK performance optimization variables
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index aaa6f741d2c0..5a10d5961311 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -33,6 +33,51 @@
+
+
+## [Release 3.32.0](https://github.com/DataDog/dd-trace-dotnet/releases/tag/v3.32.0)
+
+## Summary
+
+- [Tracer] Fix orphaned spans in WCF traces
+- [AWS Lambda] Add request-id as header to Lambda start/end invocation
+
+## Changes
+
+### Tracer
+* Add process tags to client-side stats (#7791)
+
+### CI Visibility
+* Avoid allocating and preparing CI Visibility stuff in startup hot path (#7821)
+
+### Debugger
+* Add process tags to dynamic instrumentation snapshots (#7839)
+
+### Serverless
+* Respect baggage in Azure messaging integrations (#7818)
+* [AWS Lambda] Add request-id as header to Lambda start/end invocation (#7835)
+* Add `#nullable enable` and fix `NullReferenceException` in DynamoDB (#7849)
+
+### Fixes
+* Fix orphaned spans in WCF traces (#7842)
+
+### Data Streams Monitoring
+* Add process tags to DSM (#7775)
+
+### Miscellaneous
+* Add process tags to telemetry (#7780)
+* [Docs] fix CLI commands to download logs from AAS apps (#7802)
+
+### Build / Test
+* Fix microbenchmark artifacts (#7816)
+* Add testing for latest Microsoft.Extensions.Telemetry version (#7817)
+* Fix broken CI when running tests against a specific sample (#7819)
+* Publish native symbols in all DCs (#7828)
+* Update .gitlab/one-pipeline.locked.yaml (#7836)
+* Add support for VS 2026 to Nuke detection (#7843)
+
+
+[Changes since 3.31.0](https://github.com/DataDog/dd-trace-dotnet/compare/v3.31.0...v3.32.0)
## [Release 3.31.0](https://github.com/DataDog/dd-trace-dotnet/releases/tag/v3.31.0)
diff --git a/profiler/src/ProfilerEngine/Datadog.Linux.ApiWrapper/CMakeLists.txt b/profiler/src/ProfilerEngine/Datadog.Linux.ApiWrapper/CMakeLists.txt
index 0a1dc23f3bc7..1e279cf5705e 100644
--- a/profiler/src/ProfilerEngine/Datadog.Linux.ApiWrapper/CMakeLists.txt
+++ b/profiler/src/ProfilerEngine/Datadog.Linux.ApiWrapper/CMakeLists.txt
@@ -2,7 +2,7 @@
# Project definition
# ******************************************************
-project("Datadog.Linux.ApiWrapper" VERSION 3.32.0)
+project("Datadog.Linux.ApiWrapper" VERSION 3.33.0)
# ******************************************************
# Compiler options
diff --git a/profiler/src/ProfilerEngine/Datadog.Profiler.Native.Linux/CMakeLists.txt b/profiler/src/ProfilerEngine/Datadog.Profiler.Native.Linux/CMakeLists.txt
index ffd511a3d26f..9dc228f0baad 100644
--- a/profiler/src/ProfilerEngine/Datadog.Profiler.Native.Linux/CMakeLists.txt
+++ b/profiler/src/ProfilerEngine/Datadog.Profiler.Native.Linux/CMakeLists.txt
@@ -2,7 +2,7 @@
# Project definition
# ******************************************************
-project("Datadog.Profiler.Native.Linux" VERSION 3.32.0)
+project("Datadog.Profiler.Native.Linux" VERSION 3.33.0)
option(RUN_ASAN "Build with Clang Undefined-Behavior Sanitizer" OFF)
option(RUN_UBSAN "Build with Clang Undefined-Behavior Sanitizer" OFF)
diff --git a/profiler/src/ProfilerEngine/Datadog.Profiler.Native.Windows/Resource.rc b/profiler/src/ProfilerEngine/Datadog.Profiler.Native.Windows/Resource.rc
index a3cc77352654..34c6bab8220d 100644
--- a/profiler/src/ProfilerEngine/Datadog.Profiler.Native.Windows/Resource.rc
+++ b/profiler/src/ProfilerEngine/Datadog.Profiler.Native.Windows/Resource.rc
@@ -62,8 +62,8 @@ END
// ------- version info -------------------------------------------------------
VS_VERSION_INFO VERSIONINFO
-FILEVERSION 3,32,0,0
-PRODUCTVERSION 3,32,0,0
+FILEVERSION 3,33,0,0
+PRODUCTVERSION 3,33,0,0
FILEFLAGSMASK VS_FF_PRERELEASE
FILEOS VOS_NT
FILETYPE VFT_DLL
@@ -74,12 +74,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Datadog"
VALUE "FileDescription", "Continuous Profiler for .NET Applications"
- VALUE "FileVersion", "3.32.0.0"
+ VALUE "FileVersion", "3.33.0.0"
VALUE "InternalName", "Native Profiler Engine"
VALUE "LegalCopyright", "(c) Datadog 2020-2022"
VALUE "OriginalFilename", "Datadog.Profiler.Native.dll"
VALUE "ProductName", "Continuous Profiler for .NET Applications"
- VALUE "ProductVersion", "3.32.0.0"
+ VALUE "ProductVersion", "3.33.0.0"
END
END
BLOCK "VarFileInfo"
diff --git a/profiler/src/ProfilerEngine/Datadog.Profiler.Native/dd_profiler_version.h b/profiler/src/ProfilerEngine/Datadog.Profiler.Native/dd_profiler_version.h
index 9686f0e6a2be..1c67c94a4942 100644
--- a/profiler/src/ProfilerEngine/Datadog.Profiler.Native/dd_profiler_version.h
+++ b/profiler/src/ProfilerEngine/Datadog.Profiler.Native/dd_profiler_version.h
@@ -3,4 +3,4 @@
#pragma once
-constexpr auto PROFILER_VERSION = "3.32.0";
+constexpr auto PROFILER_VERSION = "3.33.0";
diff --git a/profiler/src/ProfilerEngine/ProductVersion.props b/profiler/src/ProfilerEngine/ProductVersion.props
index 9cee130c5695..1dafee894702 100644
--- a/profiler/src/ProfilerEngine/ProductVersion.props
+++ b/profiler/src/ProfilerEngine/ProductVersion.props
@@ -5,7 +5,7 @@
- 3.32.0
+ 3.33.0
diff --git a/shared/src/Datadog.Trace.ClrProfiler.Native/CMakeLists.txt b/shared/src/Datadog.Trace.ClrProfiler.Native/CMakeLists.txt
index 4c8a4e24292a..7f58f1ef7f23 100644
--- a/shared/src/Datadog.Trace.ClrProfiler.Native/CMakeLists.txt
+++ b/shared/src/Datadog.Trace.ClrProfiler.Native/CMakeLists.txt
@@ -12,7 +12,7 @@ endif()
# Project definition
# ******************************************************
-project("Datadog.Trace.ClrProfiler.Native" VERSION 3.32.0)
+project("Datadog.Trace.ClrProfiler.Native" VERSION 3.33.0)
if (UNIVERSAL)
find_package(GlibcCompat REQUIRED)
diff --git a/shared/src/Datadog.Trace.ClrProfiler.Native/Resource.rc b/shared/src/Datadog.Trace.ClrProfiler.Native/Resource.rc
index f269c49b36f9..d5ba410c1298 100644
--- a/shared/src/Datadog.Trace.ClrProfiler.Native/Resource.rc
+++ b/shared/src/Datadog.Trace.ClrProfiler.Native/Resource.rc
@@ -57,8 +57,8 @@ VS_VERSION_INFO VERSIONINFO
#else
FILEFLAGS 0x0L
#endif
- FILEVERSION 3,32,0,0
- PRODUCTVERSION 3,32,0,0
+ FILEVERSION 3,33,0,0
+ PRODUCTVERSION 3,33,0,0
FILEOS VOS_NT
FILETYPE VFT_DLL
BEGIN
@@ -68,12 +68,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Datadog"
VALUE "FileDescription", "Native loader for Datadog .NET APM"
- VALUE "FileVersion", "3.32.0.0"
+ VALUE "FileVersion", "3.33.0.0"
VALUE "InternalName", "Native loader"
VALUE "LegalCopyright", "(c) Datadog 2020-2022"
VALUE "OriginalFilename", "Datadog.Trace.ClrProfiler.Native.dll"
VALUE "ProductName", "Native loader for Datadog .NET APM"
- VALUE "ProductVersion", "3.32.0.0"
+ VALUE "ProductVersion", "3.33.0.0"
END
END
BLOCK "VarFileInfo"
diff --git a/shared/src/msi-installer/WindowsInstaller.wixproj b/shared/src/msi-installer/WindowsInstaller.wixproj
index 5b6d3b6eefc8..52bd27603edb 100644
--- a/shared/src/msi-installer/WindowsInstaller.wixproj
+++ b/shared/src/msi-installer/WindowsInstaller.wixproj
@@ -17,9 +17,9 @@
obj\$(Configuration)\$(Platform)\
True
false
- datadog-dotnet-apm-3.32.0-$(Platform)
+ datadog-dotnet-apm-3.33.0-$(Platform)
$(MSBuildThisFileDirectory)..\..\bin\monitoring-home
- InstallerVersion=3.32.0;MonitoringHomeDirectory=$(MonitoringHomeDirectory);
+ InstallerVersion=3.33.0;MonitoringHomeDirectory=$(MonitoringHomeDirectory);
$(DefineConstants);Debug
diff --git a/shared/src/native-src/version.h b/shared/src/native-src/version.h
index c357af50cc40..53b72915ba28 100644
--- a/shared/src/native-src/version.h
+++ b/shared/src/native-src/version.h
@@ -1,3 +1,3 @@
#pragma once
-constexpr auto PROFILER_VERSION = "3.32.0";
+constexpr auto PROFILER_VERSION = "3.33.0";
diff --git a/tracer/build/_build/Build.cs b/tracer/build/_build/Build.cs
index 5b62e90242e2..09ebf51f0f0c 100644
--- a/tracer/build/_build/Build.cs
+++ b/tracer/build/_build/Build.cs
@@ -65,7 +65,7 @@ partial class Build : NukeBuild
const int LatestMajorVersion = 3;
[Parameter("The current version of the source and build")]
- readonly string Version = "3.32.0";
+ readonly string Version = "3.33.0";
[Parameter("Whether the current build version is a prerelease(for packaging purposes)")]
readonly bool IsPrerelease = false;
diff --git a/tracer/build/artifacts/dd-dotnet.sh b/tracer/build/artifacts/dd-dotnet.sh
index 5fcbefb4f5fc..a9fc58d2f4cb 100755
--- a/tracer/build/artifacts/dd-dotnet.sh
+++ b/tracer/build/artifacts/dd-dotnet.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-TRACER_VERSION="3.32.0"
+TRACER_VERSION="3.33.0"
# Get the directory of the script
DIR=$(dirname "$(readlink -f "$0")")
diff --git a/tracer/samples/AutomaticTraceIdInjection/Log4NetExample/Log4NetExample.csproj b/tracer/samples/AutomaticTraceIdInjection/Log4NetExample/Log4NetExample.csproj
index b7957d1f3c34..41306a710bc0 100644
--- a/tracer/samples/AutomaticTraceIdInjection/Log4NetExample/Log4NetExample.csproj
+++ b/tracer/samples/AutomaticTraceIdInjection/Log4NetExample/Log4NetExample.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/tracer/samples/AutomaticTraceIdInjection/MicrosoftExtensionsExample/MicrosoftExtensionsExample.csproj b/tracer/samples/AutomaticTraceIdInjection/MicrosoftExtensionsExample/MicrosoftExtensionsExample.csproj
index a8d19632d488..cee7b449eed9 100644
--- a/tracer/samples/AutomaticTraceIdInjection/MicrosoftExtensionsExample/MicrosoftExtensionsExample.csproj
+++ b/tracer/samples/AutomaticTraceIdInjection/MicrosoftExtensionsExample/MicrosoftExtensionsExample.csproj
@@ -6,7 +6,7 @@
-
+
diff --git a/tracer/samples/AutomaticTraceIdInjection/NLog40Example/NLog40Example.csproj b/tracer/samples/AutomaticTraceIdInjection/NLog40Example/NLog40Example.csproj
index df3fd90434c7..c4949b44b306 100644
--- a/tracer/samples/AutomaticTraceIdInjection/NLog40Example/NLog40Example.csproj
+++ b/tracer/samples/AutomaticTraceIdInjection/NLog40Example/NLog40Example.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/tracer/samples/AutomaticTraceIdInjection/NLog45Example/NLog45Example.csproj b/tracer/samples/AutomaticTraceIdInjection/NLog45Example/NLog45Example.csproj
index 4ba6cad5a009..f65a4fe9c5ae 100644
--- a/tracer/samples/AutomaticTraceIdInjection/NLog45Example/NLog45Example.csproj
+++ b/tracer/samples/AutomaticTraceIdInjection/NLog45Example/NLog45Example.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/tracer/samples/AutomaticTraceIdInjection/NLog46Example/NLog46Example.csproj b/tracer/samples/AutomaticTraceIdInjection/NLog46Example/NLog46Example.csproj
index 2d7c370a6992..d0de0b80b4a4 100644
--- a/tracer/samples/AutomaticTraceIdInjection/NLog46Example/NLog46Example.csproj
+++ b/tracer/samples/AutomaticTraceIdInjection/NLog46Example/NLog46Example.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/tracer/samples/AutomaticTraceIdInjection/SerilogExample/SerilogExample.csproj b/tracer/samples/AutomaticTraceIdInjection/SerilogExample/SerilogExample.csproj
index 2d516883d9eb..f17fde59ea2b 100644
--- a/tracer/samples/AutomaticTraceIdInjection/SerilogExample/SerilogExample.csproj
+++ b/tracer/samples/AutomaticTraceIdInjection/SerilogExample/SerilogExample.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/tracer/samples/ConsoleApp/Alpine3.10.dockerfile b/tracer/samples/ConsoleApp/Alpine3.10.dockerfile
index eb1f56748c76..1dfbf7d61e82 100644
--- a/tracer/samples/ConsoleApp/Alpine3.10.dockerfile
+++ b/tracer/samples/ConsoleApp/Alpine3.10.dockerfile
@@ -16,7 +16,7 @@ COPY --from=build /app/out .
# Set up Datadog APM
RUN apk --no-cache update && apk add curl
-ARG TRACER_VERSION=3.31.0
+ARG TRACER_VERSION=3.32.0
RUN mkdir -p /var/log/datadog
RUN mkdir -p /opt/datadog
RUN curl -L https://github.com/DataDog/dd-trace-dotnet/releases/download/v${TRACER_VERSION}/datadog-dotnet-apm-${TRACER_VERSION}-musl.tar.gz \
diff --git a/tracer/samples/ConsoleApp/Alpine3.9.dockerfile b/tracer/samples/ConsoleApp/Alpine3.9.dockerfile
index 6db5576faa49..a7afcdd34a64 100644
--- a/tracer/samples/ConsoleApp/Alpine3.9.dockerfile
+++ b/tracer/samples/ConsoleApp/Alpine3.9.dockerfile
@@ -16,7 +16,7 @@ COPY --from=build /app/out .
# Set up Datadog APM
RUN apk --no-cache update && apk add curl
-ARG TRACER_VERSION=3.31.0
+ARG TRACER_VERSION=3.32.0
RUN mkdir -p /var/log/datadog
RUN mkdir -p /opt/datadog
RUN curl -L https://github.com/DataDog/dd-trace-dotnet/releases/download/v${TRACER_VERSION}/datadog-dotnet-apm-${TRACER_VERSION}-musl.tar.gz \
diff --git a/tracer/samples/ConsoleApp/Debian.dockerfile b/tracer/samples/ConsoleApp/Debian.dockerfile
index d6016f4aa185..959d9e10bedb 100644
--- a/tracer/samples/ConsoleApp/Debian.dockerfile
+++ b/tracer/samples/ConsoleApp/Debian.dockerfile
@@ -15,7 +15,7 @@ WORKDIR /app
COPY --from=build /app/out .
# Set up Datadog APM
-ARG TRACER_VERSION=3.31.0
+ARG TRACER_VERSION=3.32.0
RUN mkdir -p /var/log/datadog
RUN mkdir -p /opt/datadog
RUN curl -LO https://github.com/DataDog/dd-trace-dotnet/releases/download/v${TRACER_VERSION}/datadog-dotnet-apm_${TRACER_VERSION}_amd64.deb
diff --git a/tracer/samples/OpenTelemetry/Debian.dockerfile b/tracer/samples/OpenTelemetry/Debian.dockerfile
index 275aa03d71a6..bf4971b87f52 100644
--- a/tracer/samples/OpenTelemetry/Debian.dockerfile
+++ b/tracer/samples/OpenTelemetry/Debian.dockerfile
@@ -16,7 +16,7 @@ WORKDIR /app
COPY --from=build /app/out .
# Download the Datadog .NET Tracer
-ARG TRACER_VERSION=3.31.0
+ARG TRACER_VERSION=3.32.0
RUN mkdir -p /var/log/datadog
RUN mkdir -p /opt/datadog
RUN curl -LO https://github.com/DataDog/dd-trace-dotnet/releases/download/v${TRACER_VERSION}/datadog-dotnet-apm_${TRACER_VERSION}_amd64.deb
diff --git a/tracer/samples/WindowsContainer/Dockerfile b/tracer/samples/WindowsContainer/Dockerfile
index 1c9650720dc7..17bf5082ceb6 100644
--- a/tracer/samples/WindowsContainer/Dockerfile
+++ b/tracer/samples/WindowsContainer/Dockerfile
@@ -6,7 +6,7 @@
FROM mcr.microsoft.com/dotnet/aspnet:5.0-windowsservercore-ltsc2019 AS base
WORKDIR /app
-ARG TRACER_VERSION=3.31.0
+ARG TRACER_VERSION=3.32.0
ENV DD_TRACER_VERSION=$TRACER_VERSION
ENV ASPNETCORE_URLS=http://*.80
diff --git a/tracer/src/Datadog.Trace.ClrProfiler.Managed.Loader/Startup.cs b/tracer/src/Datadog.Trace.ClrProfiler.Managed.Loader/Startup.cs
index 139fb64b5ce2..25f05c20c706 100644
--- a/tracer/src/Datadog.Trace.ClrProfiler.Managed.Loader/Startup.cs
+++ b/tracer/src/Datadog.Trace.ClrProfiler.Managed.Loader/Startup.cs
@@ -17,7 +17,7 @@ namespace Datadog.Trace.ClrProfiler.Managed.Loader
///
public partial class Startup
{
- private const string AssemblyName = "Datadog.Trace, Version=3.32.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb";
+ private const string AssemblyName = "Datadog.Trace, Version=3.33.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb";
private const string AzureAppServicesSiteExtensionKey = "DD_AZURE_APP_SERVICES"; // only set when using the AAS site extension
private const string TracerHomePathKey = "DD_DOTNET_TRACER_HOME";
diff --git a/tracer/src/Datadog.Trace/TracerConstants.cs b/tracer/src/Datadog.Trace/TracerConstants.cs
index e6467b876bb6..47ecc1afb295 100644
--- a/tracer/src/Datadog.Trace/TracerConstants.cs
+++ b/tracer/src/Datadog.Trace/TracerConstants.cs
@@ -8,7 +8,7 @@ namespace Datadog.Trace
internal static class TracerConstants
{
public const string Language = "dotnet";
- public const string AssemblyVersion = "3.32.0.0";
- public const string ThreePartVersion = "3.32.0";
+ public const string AssemblyVersion = "3.33.0.0";
+ public const string ThreePartVersion = "3.33.0";
}
}
diff --git a/tracer/src/Datadog.Tracer.Native/CMakeLists.txt b/tracer/src/Datadog.Tracer.Native/CMakeLists.txt
index 39176eb4f7b9..d58a5cc422b6 100644
--- a/tracer/src/Datadog.Tracer.Native/CMakeLists.txt
+++ b/tracer/src/Datadog.Tracer.Native/CMakeLists.txt
@@ -12,7 +12,7 @@ endif()
# Project definition
# ******************************************************
-project("Datadog.Tracer.Native" VERSION 3.32.0)
+project("Datadog.Tracer.Native" VERSION 3.33.0)
# ******************************************************
# Environment detection
diff --git a/tracer/src/Datadog.Tracer.Native/Resource.rc b/tracer/src/Datadog.Tracer.Native/Resource.rc
index 223c43769489..8f0215d47d4c 100644
--- a/tracer/src/Datadog.Tracer.Native/Resource.rc
+++ b/tracer/src/Datadog.Tracer.Native/Resource.rc
@@ -50,8 +50,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 3,32,0,0
- PRODUCTVERSION 3,32,0,0
+ FILEVERSION 3,33,0,0
+ PRODUCTVERSION 3,33,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -68,12 +68,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Datadog, Inc."
VALUE "FileDescription", "Datadog CLR Profiler"
- VALUE "FileVersion", "3.32.0.0"
+ VALUE "FileVersion", "3.33.0.0"
VALUE "InternalName", "Datadog.Tracer.Native.DLL"
VALUE "LegalCopyright", "Copyright 2017 Datadog, Inc."
VALUE "OriginalFilename", "Datadog.Tracer.Native.DLL"
VALUE "ProductName", "Datadog .NET Tracer"
- VALUE "ProductVersion", "3.32.0"
+ VALUE "ProductVersion", "3.33.0"
END
END
BLOCK "VarFileInfo"
diff --git a/tracer/src/Datadog.Tracer.Native/dd_profiler_constants.h b/tracer/src/Datadog.Tracer.Native/dd_profiler_constants.h
index d302180bb644..778d7c8bd958 100644
--- a/tracer/src/Datadog.Tracer.Native/dd_profiler_constants.h
+++ b/tracer/src/Datadog.Tracer.Native/dd_profiler_constants.h
@@ -79,7 +79,7 @@ const shared::WSTRING system_private_corelib_assemblyName = WStr("System.Private
const shared::WSTRING datadog_trace_clrprofiler_managed_loader_assemblyName = WStr("Datadog.Trace.ClrProfiler.Managed.Loader");
const shared::WSTRING managed_profiler_full_assembly_version =
- WStr("Datadog.Trace, Version=3.32.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb");
+ WStr("Datadog.Trace, Version=3.33.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb");
const shared::WSTRING managed_profiler_name = WStr("Datadog.Trace");
const shared::WSTRING manual_instrumentation_name = WStr("Datadog.Trace.Manual");
@@ -140,7 +140,7 @@ const AssemblyProperty managed_profiler_assembly_property = AssemblyProperty(
49, 105, 236, 40, 21, 176, 12, 238, 238, 204, 141, 90, 27, 244, 61, 182, 125, 41, 97, 163,
233, 190, 161, 57, 127, 4, 62, 192, 116, 145, 112, 150, 73, 37, 47, 85, 101, 183, 86, 197},
160, 32772, 1)
- .WithVersion(3, 32, 0, 0);
+ .WithVersion(3, 33, 0, 0);
} // namespace trace
diff --git a/tracer/src/Directory.Build.props b/tracer/src/Directory.Build.props
index e302681073cf..4cbecfac6740 100644
--- a/tracer/src/Directory.Build.props
+++ b/tracer/src/Directory.Build.props
@@ -4,7 +4,7 @@
net461;netstandard2.0;netcoreapp3.1;net6.0
true
- 3.32.0
+ 3.33.0
latest