Skip to content

Commit cfb39e8

Browse files
[Version Bump] 2.11.0 (DataDog#2887)
Co-authored-by: pierotibou <pierotibou@users.noreply.github.com>
1 parent 49c3f4c commit cfb39e8

File tree

32 files changed

+143
-39
lines changed

32 files changed

+143
-39
lines changed

.github/scripts/package_and_deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ddprof_deploy_folder=$1
66
commit_sha=$2
77
commit_author=$3
88

9-
current_profiler_version="2.10.0"
9+
current_profiler_version="2.11.0"
1010
current_profiler_beta_version="2"
1111
profiler_version=v${current_profiler_version}.${current_profiler_beta_version}_$(date -u +%G%m%d%H%M%S)
1212

docs/CHANGELOG.md

+104
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,110 @@
33

44

55

6+
7+
## [Release 2.10.0](https://github.com/DataDog/dd-trace-dotnet/releases/tag/v2.10.0)
8+
9+
## Summary
10+
11+
Main changes are:
12+
- Continuous profiler now available on linux (needs GLIBC 2.18+, which means Centos 7 is not supported in this release)
13+
- CPU profiling and Exception profiling are available.
14+
15+
Also here are more minor changes on the Tracer integrations:
16+
- `NLog` integration supports v5.0.0
17+
- Stops prefixing `aspnet.request` resource name with IIS virtual apps in the rare cases it happened
18+
- Fixes the incorrect `http.status_code` tag for ASP.NET MVC with IIS in Classsic-mode when an exception is thrown
19+
- `MySqlConnector` support starts at v0.61.0
20+
21+
## Changes
22+
23+
### Tracer
24+
* Add support for UDS to telemetry transport (#2617)
25+
* Return const char* instead of std::string on C linkage function (#2824)
26+
* Fix SamplingPriority in B3 and W3C headers (#2828)
27+
* Add Redis obfuscator (#2847)
28+
* Exclude dynamic assemblies from telemetry (#2855)
29+
* Avoid calling AsyncLocal.Value twice when GetSpanContextRaw() is null (#2857)
30+
* Rewrite P/Invoke maps for Native Loader (#2858)
31+
* [Tracer] Support MySqlConnector from version 0.61.0 (#2870)
32+
* Update NLog integration to be compatible with v5.0.0 (#2820)
33+
34+
### CI App
35+
* [CIApp] - Per-test Code Coverage (#2739)
36+
* [CIApp] - Adds library_version to the message metadata (#2831)
37+
* [CIApp] - Refactor CodeOwner feature + Zero duration on Skipped Tests (#2845)
38+
39+
### ASM
40+
* [ASM] Change to rate limit tests (#2759)
41+
42+
### Continuous Profiler
43+
* [Profiler] Implement exception profiler (#2743)
44+
* [Profiler] Update CPU profiling implementation (#2765)
45+
* Package the profiler, tracer and native loader together on Linux (#2777)
46+
* Add throughput tests for profiler (#2784)
47+
* [Profiler] Fix error reported by UBSAN (#2799)
48+
* [Profiler] Do not aggregate sample with empty callstack (#2805)
49+
* [Profiler] Flush samples and export a last .pprof on exit (#2814)
50+
* [Profiler] Add a cache for native frame resolution (#2817)
51+
* [Profiler] Add a profile_seq tag to each uploaded .pprof (#2819)
52+
* [Profiler] Allow stack sampler metrics for Linux (#2822)
53+
* [Profiler] Implement sampling for exceptions (#2823)
54+
* [Profiler] Activate log message only in debug build (#2825)
55+
* [Profiler] Run profiler integration tests in AzDo (#2830)
56+
* [Profiler] Fix empty labels (#2832)
57+
* [Profiler] Fix profiler throughput test on master (#2837)
58+
* [Profiler] Add async scenario to demo application (#2840)
59+
* [Profiler] Disable debug logging for throughput tests (#2841)
60+
* [Profiler] Fix analyzer error (#2844)
61+
* [Profiler] Add exceptions throughput test scenario (#2856)
62+
* [Profiler] Set _GLIBCXX_USE_CXX11_ABI to 0 and remove liblzma dependency (#2861)
63+
* [Profiler] Run profiler benchmark tests with monitoring home instead for windows (#2862)
64+
* [Profiler] Add CPU and exceptions to profiler benchmarks (#2865)
65+
* [Profiler] Prevent from blocking the application (#2866)
66+
* [Profiler] Do not resolve native frame if not needed (#2868)
67+
68+
### Serverless
69+
* [Serverless] Support sampling in universal instrumentation (#2751)
70+
71+
### Fixes
72+
* [CallTarget] - Fix Nested Types Instrumentation (#2818)
73+
* Stop prefixing resource names with IIS app name when TracingHttpModule only (#2852)
74+
* Fix incorrect `http.status_code` in ASP.NET MVC with IIS classic mode (#2854)
75+
76+
### Build / Test
77+
* Execution Benchmark and Throughput cleanup (#2790)
78+
* Replace wiremock with `dd-apm-test-agent` in smoke tests (#2793)
79+
* [Test Package Versions Bump] Updating package versions (#2803)
80+
* Speed up native compilation on Linux (profiler, tracer, native loader) (#2804)
81+
* Use azure scale-sets for more jobs (#2806)
82+
* Split linux integration tests to reduce overall runtime (#2807)
83+
* Fix Gitlab job (#2821)
84+
* Fix `ThreadAbortAnalyzer` to work with the latest .NET SDK (#2833)
85+
* Split ARM64 integration tests to reduce overall run time (#2834)
86+
* [Release] Changes following last release (#2835)
87+
* Fix downstream job trigger for deployments to rel-env (#2838)
88+
* Change code ownership (#2839)
89+
* Use Native Loader for exploration tests (#2842)
90+
* [Tests] Allow updating snapshots from an AzDo build (#2843)
91+
* Add workaround for race condition in GRPC library (#2848)
92+
* Increase timeout in `AspNetCoreDiagnosticObserver` tests (#2849)
93+
* Revert "Use azure scale-sets for more jobs (#2806)" (#2850)
94+
* Add snapshot tests for ASP.NET virtual applications (#2851)
95+
* Fix flaky `LambdaRequestBuilderTests` (#2863)
96+
* Fix crash in execution benchmark tests (#2873)
97+
* Stripping out unneeded information from native `so` library files (#2874)
98+
* Upload linux-native-symbols artifacts and add to release artifacts (#2879)
99+
* Create a Code Freeze bot (#2881)
100+
* Fix code freeze workflow (#2882)
101+
* Fix code-freeze bot (part deux) (#2885)
102+
103+
### Miscellaneous
104+
* [Test Package Versions Bump] Updating package versions (#2827)
105+
* [Doc] Add a quick comment on docker for integrations (#2869)
106+
107+
108+
[Changes since 2.9.0](https://github.com/DataDog/dd-trace-dotnet/compare/v2.9.0...v2.10.0)
109+
6110
## [Release 2.9.0](https://github.com/DataDog/dd-trace-dotnet/releases/tag/v2.9.0)
7111

8112
## Summary

profiler/src/ProfilerEngine/Datadog.Profiler.Native.Linux/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Project definition
33
# ******************************************************
44

5-
project("Datadog.AutoInstrumentation.Profiler.Native.Linux" VERSION 2.10.0)
5+
project("Datadog.AutoInstrumentation.Profiler.Native.Linux" VERSION 2.11.0)
66

77
option(RUN_ASAN "Build with Clang Undefined-Behavior Sanitizer" OFF)
88
option(RUN_UBSAN "Build with Clang Undefined-Behavior Sanitizer" OFF)

profiler/src/ProfilerEngine/Datadog.Profiler.Native.Windows/Resource.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ NETCOREAPP20_Datadog_AutoInstrumentation_ManagedLoader_pdb SYMBOLS "net
8989

9090
// ------- version info -------------------------------------------------------
9191
VS_VERSION_INFO VERSIONINFO
92-
FILEVERSION 2,10,0,0
93-
PRODUCTVERSION 2,10,0,0
92+
FILEVERSION 2,11,0,0
93+
PRODUCTVERSION 2,11,0,0
9494
FILEFLAGSMASK VS_FF_PRERELEASE
9595
FILEOS VOS_NT
9696
FILETYPE VFT_DLL
@@ -101,12 +101,12 @@ BEGIN
101101
BEGIN
102102
VALUE "CompanyName", "Datadog"
103103
VALUE "FileDescription", "Continuous Profiler for .NET Applications"
104-
VALUE "FileVersion", "2.10.0.0"
104+
VALUE "FileVersion", "2.11.0.0"
105105
VALUE "InternalName", "Native Profiler Engine"
106106
VALUE "LegalCopyright", "(c) Datadog 2020-2022"
107107
VALUE "OriginalFilename", "Datadog.Profiler.Native.dll"
108108
VALUE "ProductName", "Continuous Profiler for .NET Applications"
109-
VALUE "ProductVersion", "2.10.0.0"
109+
VALUE "ProductVersion", "2.11.0.0"
110110
END
111111
END
112112
BLOCK "VarFileInfo"

profiler/src/ProfilerEngine/Datadog.Profiler.Native/dd_profiler_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
#pragma once
55

6-
constexpr auto PROFILER_VERSION = "2.10.0";
6+
constexpr auto PROFILER_VERSION = "2.11.0";
77
// The beta revision is temporary
88
constexpr auto PROFILER_BETA_REVISION = "2";

profiler/src/ProfilerEngine/ProductVersion.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<!-- Alpha 1.0.2 -->
99
<!-- Beta 1.1.1 -->
1010
<!-- GA 1.2.0 -->
11-
<ProductVersion>2.10.0</ProductVersion>
11+
<ProductVersion>2.11.0</ProductVersion>
1212
<BetaVersion>2</BetaVersion>
1313

1414
<!-- ProductVersionPrerelease format examples: alpha.1, alpha.2, beta.1, beta.2; EMPTY for stable releases. -->

shared/src/msi-installer/WindowsInstaller.wixproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<IntermediateOutputPath>obj\$(Configuration)\$(Platform)\</IntermediateOutputPath>
1818
<SuppressPdbOutput>True</SuppressPdbOutput>
1919
<DefineSolutionProperties>false</DefineSolutionProperties>
20-
<OutputName>datadog-dotnet-apm-2.10.0-$(Platform)</OutputName> <!-- -The regex recognizes this line -->
20+
<OutputName>datadog-dotnet-apm-2.11.0-$(Platform)</OutputName> <!-- -The regex recognizes this line -->
2121
<MonitoringHomeDirectory Condition="'$(MonitoringHomeDirectory)' == ''">$(MSBuildThisFileDirectory)..\..\bin\monitoring-home</MonitoringHomeDirectory>
2222
<TracerHomeDirectory Condition="'$(TracerHomeDirectory)' == ''">$(MSBuildThisFileDirectory)..\bin\windows-tracer-home</TracerHomeDirectory>
2323
<ProfilerHomeDirectory Condition="'$(ProfilerHomeDirectory)' == ''">$(MSBuildThisFileDirectory)..\bin\DDProf-Deploy</ProfilerHomeDirectory>
24-
<DefineConstants>InstallerVersion=2.10.0;MonitoringHomeDirectory=$(MonitoringHomeDirectory);TracerHomeDirectory=$(TracerHomeDirectory);LibDdwafDirectory=$(LibDdwafDirectory);ProfilerHomeDirectory=$(ProfilerHomeDirectory)</DefineConstants>
24+
<DefineConstants>InstallerVersion=2.11.0;MonitoringHomeDirectory=$(MonitoringHomeDirectory);TracerHomeDirectory=$(TracerHomeDirectory);LibDdwafDirectory=$(LibDdwafDirectory);ProfilerHomeDirectory=$(ProfilerHomeDirectory)</DefineConstants>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
2727
<DefineConstants>$(DefineConstants);Debug</DefineConstants>

tracer/build/_build/Build.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ partial class Build : NukeBuild
6161
readonly bool IsAlpine = false;
6262

6363
[Parameter("The current version of the source and build")]
64-
readonly string Version = "2.10.0";
64+
readonly string Version = "2.11.0";
6565

6666
[Parameter("Whether the current build version is a prerelease(for packaging purposes)")]
6767
readonly bool IsPrerelease = false;

tracer/samples/AutomaticTraceIdInjection/Log4NetExample/Log4NetExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Datadog.Trace" Version="2.9.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.10.0" />
1010
<PackageReference Include="log4net" Version="2.0.12" />
1111
<PackageReference Include="log4net.Ext.Json" Version="2.0.8.3" />
1212
</ItemGroup>

tracer/samples/AutomaticTraceIdInjection/MicrosoftExtensionsExample/MicrosoftExtensionsExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<ItemGroup>
88
<PackageReference Include="Datadog.Monitoring.Distribution" Version="1.28.6-beta01" />
9-
<PackageReference Include="Datadog.Trace" Version="2.9.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.10.0" />
1010
<PackageReference Include="Microsoft.Extensions.Hosting" Version="3.1.18" />
1111
<PackageReference Include="NetEscapades.Extensions.Logging.RollingFile" Version="2.5.0-beta01" />
1212
<PackageReference Include="Serilog.Extensions.Logging" Version="3.0.1" />

tracer/samples/AutomaticTraceIdInjection/NLog40Example/NLog40Example.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Datadog.Trace" Version="2.9.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.10.0" />
1010
<PackageReference Include="NLog" Version="4.0.0" />
1111
</ItemGroup>
1212

tracer/samples/AutomaticTraceIdInjection/NLog45Example/NLog45Example.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Datadog.Trace" Version="2.9.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.10.0" />
1010
<PackageReference Include="NLog" Version="4.5.11" />
1111
</ItemGroup>
1212

tracer/samples/AutomaticTraceIdInjection/NLog46Example/NLog46Example.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Datadog.Trace" Version="2.9.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.10.0" />
1010
<PackageReference Include="NLog" Version="4.6.7" />
1111
</ItemGroup>
1212

tracer/samples/AutomaticTraceIdInjection/SerilogExample/SerilogExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Datadog.Trace" Version="2.9.0" />
9+
<PackageReference Include="Datadog.Trace" Version="2.10.0" />
1010
<PackageReference Include="Serilog" Version="2.9.0" />
1111
<PackageReference Include="Serilog.Formatting.Compact" Version="1.1.0" />
1212
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" />

tracer/samples/ConsoleApp/Alpine3.10.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY --from=build /app/out .
1616

1717
# Set up Datadog APM
1818
RUN apk --no-cache update && apk add curl
19-
ARG TRACER_VERSION=2.9.0
19+
ARG TRACER_VERSION=2.10.0
2020
RUN mkdir -p /var/log/datadog
2121
RUN mkdir -p /opt/datadog
2222
RUN curl -L https://github.com/DataDog/dd-trace-dotnet/releases/download/v${TRACER_VERSION}/datadog-dotnet-apm-${TRACER_VERSION}-musl.tar.gz \

tracer/samples/ConsoleApp/Alpine3.9.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY --from=build /app/out .
1616

1717
# Set up Datadog APM
1818
RUN apk --no-cache update && apk add curl
19-
ARG TRACER_VERSION=2.9.0
19+
ARG TRACER_VERSION=2.10.0
2020
RUN mkdir -p /var/log/datadog
2121
RUN mkdir -p /opt/datadog
2222
RUN curl -L https://github.com/DataDog/dd-trace-dotnet/releases/download/v${TRACER_VERSION}/datadog-dotnet-apm-${TRACER_VERSION}-musl.tar.gz \

tracer/samples/ConsoleApp/Debian.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ WORKDIR /app
1515
COPY --from=build /app/out .
1616

1717
# Set up Datadog APM
18-
ARG TRACER_VERSION=2.9.0
18+
ARG TRACER_VERSION=2.10.0
1919
RUN mkdir -p /var/log/datadog
2020
RUN mkdir -p /opt/datadog
2121
RUN curl -LO https://github.com/DataDog/dd-trace-dotnet/releases/download/v${TRACER_VERSION}/datadog-dotnet-apm_${TRACER_VERSION}_amd64.deb

tracer/samples/WindowsContainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
FROM mcr.microsoft.com/dotnet/aspnet:5.0-windowsservercore-ltsc2019 AS base
77
WORKDIR /app
88

9-
ARG TRACER_VERSION=2.9.0
9+
ARG TRACER_VERSION=2.10.0
1010
ENV DD_TRACER_VERSION=$TRACER_VERSION
1111
ENV ASPNETCORE_URLS=http://*.80
1212

tracer/src/Datadog.Monitoring.Distribution/Datadog.Monitoring.Distribution.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>2.10.0</Version>
4+
<Version>2.11.0</Version>
55
<Version>$(Version)-beta01</Version> <!-- Unconditionally add a beta suffix to the package, but keep the rest of the name so we can associate it with the rest of the release -->
66
<Title>Datadog APM Auto-instrumentation Assets</Title>
77
<Description>Auto-instrumentation assets for Datadog APM</Description>

tracer/src/Datadog.Trace.AspNet/Datadog.Trace.AspNet.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net461</TargetFrameworks>
5-
<Version>2.10.0</Version>
5+
<Version>2.11.0</Version>
66
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
77
</PropertyGroup>
88

tracer/src/Datadog.Trace.ClrProfiler.Managed.Loader/Datadog.Trace.ClrProfiler.Managed.Loader.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<OutputPath>..\bin\ProfilerResources\</OutputPath>
77

88
<!-- NuGet -->
9-
<Version>2.10.0</Version>
9+
<Version>2.11.0</Version>
1010

1111
<!-- Hide warnings for EOL .NET Core targets (e.g. netcoreapp2.0) -->
1212
<CheckEolTargetFramework>false</CheckEolTargetFramework>

tracer/src/Datadog.Trace.ClrProfiler.Managed.Loader/Startup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Datadog.Trace.ClrProfiler.Managed.Loader
1414
/// </summary>
1515
public partial class Startup
1616
{
17-
private const string AssemblyName = "Datadog.Trace, Version=2.10.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb";
17+
private const string AssemblyName = "Datadog.Trace, Version=2.11.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb";
1818
private const string AzureAppServicesKey = "DD_AZURE_APP_SERVICES";
1919
private const string AasCustomTracingKey = "DD_AAS_ENABLE_CUSTOM_TRACING";
2020
private const string AasCustomMetricsKey = "DD_AAS_ENABLE_CUSTOM_METRICS";

tracer/src/Datadog.Trace.ClrProfiler.Native/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_policy(SET CMP0015 NEW)
55
# Project definition
66
# ******************************************************
77

8-
project("Datadog.Trace.ClrProfiler.Native" VERSION 2.10.0)
8+
project("Datadog.Trace.ClrProfiler.Native" VERSION 2.11.0)
99

1010
# ******************************************************
1111
# Environment detection

tracer/src/Datadog.Trace.ClrProfiler.Native/Resource.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ END
5050
//
5151

5252
VS_VERSION_INFO VERSIONINFO
53-
FILEVERSION 2,10,0,0
54-
PRODUCTVERSION 2,10,0,0
53+
FILEVERSION 2,11,0,0
54+
PRODUCTVERSION 2,11,0,0
5555
FILEFLAGSMASK 0x3fL
5656
#ifdef _DEBUG
5757
FILEFLAGS 0x1L
@@ -68,12 +68,12 @@ BEGIN
6868
BEGIN
6969
VALUE "CompanyName", "Datadog, Inc."
7070
VALUE "FileDescription", "Datadog CLR Profiler"
71-
VALUE "FileVersion", "2.10.0.0"
71+
VALUE "FileVersion", "2.11.0.0"
7272
VALUE "InternalName", "Datadog.Trace.ClrProfiler.Native.DLL"
7373
VALUE "LegalCopyright", "Copyright 2017 Datadog, Inc."
7474
VALUE "OriginalFilename", "Datadog.Trace.ClrProfiler.Native.DLL"
7575
VALUE "ProductName", "Datadog .NET Tracer"
76-
VALUE "ProductVersion", "2.10.0"
76+
VALUE "ProductVersion", "2.11.0"
7777
END
7878
END
7979
BLOCK "VarFileInfo"

tracer/src/Datadog.Trace.ClrProfiler.Native/dd_profiler_constants.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const shared::WSTRING system_private_corelib_assemblyName = WStr("System.Private
8383
const shared::WSTRING datadog_trace_clrprofiler_managed_loader_assemblyName = WStr("Datadog.Trace.ClrProfiler.Managed.Loader");
8484

8585
const shared::WSTRING managed_profiler_full_assembly_version =
86-
WStr("Datadog.Trace, Version=2.10.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb");
86+
WStr("Datadog.Trace, Version=2.11.0.0, Culture=neutral, PublicKeyToken=def86d061d0d2eeb");
8787

8888
const shared::WSTRING managed_profiler_name = WStr("Datadog.Trace");
8989

@@ -120,7 +120,7 @@ const AssemblyProperty managed_profiler_assembly_property = AssemblyProperty(
120120
49, 105, 236, 40, 21, 176, 12, 238, 238, 204, 141, 90, 27, 244, 61, 182, 125, 41, 97, 163,
121121
233, 190, 161, 57, 127, 4, 62, 192, 116, 145, 112, 150, 73, 37, 47, 85, 101, 183, 86, 197},
122122
160, 32772, 1)
123-
.WithVersion(2, 10, 0, 0);
123+
.WithVersion(2, 11, 0, 0);
124124

125125
} // namespace trace
126126

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#pragma once
22

3-
constexpr auto PROFILER_VERSION = "2.10.0";
3+
constexpr auto PROFILER_VERSION = "2.11.0";

tracer/src/Datadog.Trace.MSBuild/Datadog.Trace.MSBuild.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>2.10.0</Version>
4+
<Version>2.11.0</Version>
55
</PropertyGroup>
66

77
<!-- For VS testing purposes only, copy all implementation assemblies to the

tracer/src/Datadog.Trace.OpenTracing/Datadog.Trace.OpenTracing.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<!-- NuGet -->
5-
<Version>2.10.0</Version>
5+
<Version>2.11.0</Version>
66
<Title>Datadog APM - OpenTracing</Title>
77
<Description>Provides OpenTracing support for Datadog APM</Description>
88
<PackageTags>$(PackageTags);OpenTracing</PackageTags>

0 commit comments

Comments
 (0)