Skip to content

Commit

Permalink
Bump version to 0.2.8.0 (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
dszmigielski authored Aug 11, 2022
1 parent 560b130 commit c3369c0
Show file tree
Hide file tree
Showing 34 changed files with 56 additions and 50 deletions.
8 changes: 7 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,16 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2.

### Bugfixes

### Enhancements

## [Release 0.2.8](https://github.com/signalfx/signalfx-dotnet-tracing/releases/tag/v0.2.8)

### Bugfixes

- [ASP.NET Web API 2 Instrumentation] Fix the case when the spans was
incorrectly marked as errors when servers return 404 status code.

### Enhancements
---

## [Release 0.2.7](https://github.com/signalfx/signalfx-dotnet-tracing/releases/tag/v0.2.7)

Expand Down
4 changes: 2 additions & 2 deletions docs/internal/docker-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Setting up SignalFx Instrumentation for .NET to run in Windows Nano Server Docke
FROM mcr.microsoft.com/dotnet/aspnet:6.0-nanoserver-ltsc2022

# Download SignalFx Instrumentation for .NET zip.
ARG TRACER_VERSION=0.2.7
ARG TRACER_VERSION=0.2.8
ADD https://github.com/signalfx/signalfx-dotnet-tracing/releases/download/v${TRACER_VERSION}/signalfx-dotnet-tracing-${TRACER_VERSION}.zip "C:/signalfx-dotnet-tracing.zip"

# Extract zip to C:/signalfx/
Expand Down Expand Up @@ -48,7 +48,7 @@ ENV CORECLR_ENABLE_PROFILING=1 \
CORECLR_PROFILER='{B4C89B0F-9908-4F73-9F59-0D77C5A06874}' \
SIGNALFX_ENDPOINT_URL='<my-endpoint-here>' \

ARG TRACER_VERSION=0.2.7
ARG TRACER_VERSION=0.2.8

# Download and install SignalFx Instrumentation for .NET MSI.
# Note: MSI is preferred installation method for Windows to setup profiler at once and reduce manual steps.
Expand Down
2 changes: 1 addition & 1 deletion overhead-test/src/Docker/eshop-app.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN apt-get update \
curl

# TODO Splunk: update with release
ARG TRACER_VERSION=0.2.7
ARG TRACER_VERSION=0.2.8

RUN curl -LO https://github.com/signalfx/signalfx-dotnet-tracing/releases/download/v${TRACER_VERSION}/signalfx-dotnet-tracing_${TRACER_VERSION}_amd64.deb
RUN dpkg -i ./signalfx-dotnet-tracing_${TRACER_VERSION}_amd64.deb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Project definition
# ******************************************************

project("Datadog.AutoInstrumentation.Profiler.Native.Linux" VERSION 0.2.7)
project("Datadog.AutoInstrumentation.Profiler.Native.Linux" VERSION 0.2.8)

option(RUN_ASAN "Build with Clang Undefined-Behavior Sanitizer" OFF)
option(RUN_UBSAN "Build with Clang Undefined-Behavior Sanitizer" OFF)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ END

// ------- version info -------------------------------------------------------
VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,2,7,0
PRODUCTVERSION 0,2,7,0
FILEVERSION 0,2,8,0
PRODUCTVERSION 0,2,8,0
FILEFLAGSMASK VS_FF_PRERELEASE
FILEOS VOS_NT
FILETYPE VFT_DLL
Expand All @@ -74,12 +74,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Datadog"
VALUE "FileDescription", "Continuous Profiler for .NET Applications"
VALUE "FileVersion", "0.2.7.0"
VALUE "FileVersion", "0.2.8.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", "0.2.7.0"
VALUE "ProductVersion", "0.2.8.0"
END
END
BLOCK "VarFileInfo"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#pragma once

constexpr auto PROFILER_VERSION = "0.2.7";
constexpr auto PROFILER_VERSION = "0.2.8";

// The beta revision is temporary
constexpr auto PROFILER_BETA_REVISION = "1";
2 changes: 1 addition & 1 deletion profiler/src/ProfilerEngine/ProductVersion.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<!-- * * * * * * * * * * * INPUTS. Update this section EVERY time the component is shipped/released! * * * * * * * * * * * -->
<PropertyGroup>
<!-- GA 1.2.0 -->
<ProductVersion>0.2.7</ProductVersion>
<ProductVersion>0.2.8</ProductVersion>
<BetaVersion>1</BetaVersion>

<!-- ProductVersionPrerelease format examples: alpha.1, alpha.2, beta.1, beta.2; EMPTY for stable releases. -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>SignalFx.NET.Tracing.Azure.Site.Extension</id>
<version>0.2.7.0</version>
<version>0.2.8.0</version>
<title>SignalFx .NET Tracing</title>
<authors>SignalFx</authors>
<icon>icon.png</icon>
Expand Down
14 changes: 7 additions & 7 deletions shared/src/azure-site-extension/applicationHost.xdt
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@
<add name="COMPLUS_LoaderOptimization" value="1" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="COR_ENABLE_PROFILING" value="1" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="COR_PROFILER" value="{B4C89B0F-9908-4F73-9F59-0D77C5A06874}" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="COR_PROFILER_PATH" value="%HOME%\signalfx\tracing\v0.2.7\win-x64\SignalFx.Tracing.ClrProfiler.Native.dll" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="COR_PROFILER_PATH_32" value="%HOME%\signalfx\tracing\v0.2.7\win-x86\SignalFx.Tracing.ClrProfiler.Native.dll" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="COR_PROFILER_PATH_64" value="%HOME%\signalfx\tracing\v0.2.7\win-x64\SignalFx.Tracing.ClrProfiler.Native.dll" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="COR_PROFILER_PATH" value="%HOME%\signalfx\tracing\v0.2.8\win-x64\SignalFx.Tracing.ClrProfiler.Native.dll" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="COR_PROFILER_PATH_32" value="%HOME%\signalfx\tracing\v0.2.8\win-x86\SignalFx.Tracing.ClrProfiler.Native.dll" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="COR_PROFILER_PATH_64" value="%HOME%\signalfx\tracing\v0.2.8\win-x64\SignalFx.Tracing.ClrProfiler.Native.dll" xdt:Locator="Match(name)" xdt:Transform="Insert"/>

<add name="CORECLR_ENABLE_PROFILING" value="1" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="CORECLR_PROFILER" value="{B4C89B0F-9908-4F73-9F59-0D77C5A06874}" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="CORECLR_PROFILER_PATH_32" value="%HOME%\signalfx\tracing\v0.2.7\win-x86\SignalFx.Tracing.ClrProfiler.Native.dll" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="CORECLR_PROFILER_PATH_64" value="%HOME%\signalfx\tracing\v0.2.7\win-x64\SignalFx.Tracing.ClrProfiler.Native.dll" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="CORECLR_PROFILER_PATH_32" value="%HOME%\signalfx\tracing\v0.2.8\win-x86\SignalFx.Tracing.ClrProfiler.Native.dll" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="CORECLR_PROFILER_PATH_64" value="%HOME%\signalfx\tracing\v0.2.8\win-x64\SignalFx.Tracing.ClrProfiler.Native.dll" xdt:Locator="Match(name)" xdt:Transform="Insert"/>

<add name="SIGNALFX_DOTNET_TRACER_HOME" value="%HOME%\signalfx\tracing\v0.2.7" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="SIGNALFX_TRACE_LOG_DIRECTORY" value="%HOME%\LogFiles\signalfx\tracing\v0.2.7\" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="SIGNALFX_DOTNET_TRACER_HOME" value="%HOME%\signalfx\tracing\v0.2.8" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="SIGNALFX_TRACE_LOG_DIRECTORY" value="%HOME%\LogFiles\signalfx\tracing\v0.2.8\" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="SIGNALFX_AZURE_APP_SERVICES" value="1" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
<add name="SIGNALFX_PROFILER_EXCLUDE_PROCESSES" value="SnapshotUploader.exe;workerforwarder.exe" xdt:Locator="Match(name)" xdt:Transform="Insert"/>
</environmentVariables>
Expand Down
2 changes: 1 addition & 1 deletion shared/src/azure-site-extension/install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ echo Extension directory is %extensionBaseDir%
echo Site root directory is %siteHome%

REM Create version specific tracer directory
SET tracerDir=%siteHome%\signalfx\tracing\v0.2.7
SET tracerDir=%siteHome%\signalfx\tracing\v0.2.8
if not exist %tracerDir% mkdir %tracerDir%

REM Copy tracer to version specific directory
Expand Down
4 changes: 2 additions & 2 deletions shared/src/msi-installer/WindowsInstaller.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<IntermediateOutputPath>obj\$(Configuration)\$(Platform)\</IntermediateOutputPath>
<SuppressPdbOutput>True</SuppressPdbOutput>
<DefineSolutionProperties>false</DefineSolutionProperties>
<OutputName>datadog-dotnet-apm-0.2.7-$(Platform)</OutputName> <!-- -The regex recognizes this line -->
<OutputName>datadog-dotnet-apm-0.2.8-$(Platform)</OutputName> <!-- -The regex recognizes this line -->
<MonitoringHomeDirectory Condition="'$(MonitoringHomeDirectory)' == ''">$(MSBuildThisFileDirectory)..\..\bin\monitoring-home</MonitoringHomeDirectory>
<TracerHomeDirectory Condition="'$(TracerHomeDirectory)' == ''">$(MSBuildThisFileDirectory)..\bin\windows-tracer-home</TracerHomeDirectory>
<ProfilerHomeDirectory Condition="'$(ProfilerHomeDirectory)' == ''">$(MSBuildThisFileDirectory)..\bin\DDProf-Deploy</ProfilerHomeDirectory>
<DefineConstants>InstallerVersion=0.2.7;MonitoringHomeDirectory=$(MonitoringHomeDirectory);TracerHomeDirectory=$(TracerHomeDirectory);LibDdwafDirectory=$(LibDdwafDirectory);ProfilerHomeDirectory=$(ProfilerHomeDirectory)</DefineConstants>
<DefineConstants>InstallerVersion=0.2.8;MonitoringHomeDirectory=$(MonitoringHomeDirectory);TracerHomeDirectory=$(TracerHomeDirectory);LibDdwafDirectory=$(LibDdwafDirectory);ProfilerHomeDirectory=$(ProfilerHomeDirectory)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DefineConstants>$(DefineConstants);Debug</DefineConstants>
Expand Down
2 changes: 1 addition & 1 deletion tracer/build/_build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ partial class Build : NukeBuild
readonly bool IsAlpine = false;

[Parameter("The current version of the source and build")]
readonly string Version = "0.2.7";
readonly string Version = "0.2.8";

[Parameter("Whether the current build version is a prerelease(for packaging purposes)")]
readonly bool IsPrerelease = false;
Expand Down
2 changes: 1 addition & 1 deletion tracer/samples/ConsoleApp/Alpine3.10.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY --from=build /app/out .

# Set up Datadog APM
RUN apk --no-cache update && apk add curl
ARG TRACER_VERSION=0.2.7
ARG TRACER_VERSION=0.2.8
RUN mkdir -p /var/log/signalfx
RUN mkdir -p /opt/signalfx
RUN curl -L https://github.com/signalfx/signalfx-dotnet-tracing/releases/download/v${TRACER_VERSION}/signalfx-dotnet-tracing-${TRACER_VERSION}-musl.tar.gz \
Expand Down
2 changes: 1 addition & 1 deletion tracer/samples/ConsoleApp/Alpine3.9.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY --from=build /app/out .

# Set up Datadog APM
RUN apk --no-cache update && apk add curl
ARG TRACER_VERSION=0.2.7
ARG TRACER_VERSION=0.2.8
RUN mkdir -p /var/log/signalfx
RUN mkdir -p /opt/signalfx
RUN curl -L https://github.com/signalfx/signalfx-dotnet-tracing/releases/download/v${TRACER_VERSION}/signalfx-dotnet-tracing-${TRACER_VERSION}-musl.tar.gz \
Expand Down
2 changes: 1 addition & 1 deletion tracer/samples/ConsoleApp/Debian.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ WORKDIR /app
COPY --from=build /app/out .

# Set up Datadog APM
ARG TRACER_VERSION=0.2.7
ARG TRACER_VERSION=0.2.8
RUN mkdir -p /var/log/signalfx
RUN mkdir -p /opt/signalfx
RUN curl -LO https://github.com/signalfx/signalfx-dotnet-tracing/releases/download/v${TRACER_VERSION}/signalfx-dotnet-tracing_${TRACER_VERSION}_amd64.deb
Expand Down
2 changes: 1 addition & 1 deletion tracer/samples/WindowsContainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
FROM mcr.microsoft.com/dotnet/aspnet:5.0-windowsservercore-ltsc2019 AS base
WORKDIR /app

ARG TRACER_VERSION=0.2.7
ARG TRACER_VERSION=0.2.8
ENV SIGNALFX_TRACER_VERSION=$TRACER_VERSION
ENV ASPNETCORE_URLS=http://*.80

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>0.2.7</Version>
<Version>0.2.8</Version>
<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 -->
<Title>Datadog APM Auto-instrumentation Assets</Title>
<Description>Auto-instrumentation assets for Datadog APM</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>net461</TargetFrameworks>
<Version>0.2.7</Version>
<Version>0.2.8</Version>
<AssemblyName>SignalFx.Tracing.AspNet</AssemblyName>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AssemblyName>SignalFx.Tracing.ClrProfiler.Managed.Loader</AssemblyName>

<!-- NuGet -->
<Version>0.2.7</Version>
<Version>0.2.8</Version>

<!-- Hide warnings for EOL .NET Core targets (e.g. netcoreapp2.0) -->
<CheckEolTargetFramework>false</CheckEolTargetFramework>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Datadog.Trace.ClrProfiler.Managed.Loader
/// </summary>
public partial class Startup
{
private const string AssemblyName = "SignalFx.Tracing, Version=0.2.7.0, Culture=neutral, PublicKeyToken=e43a27c2023d388a";
private const string AssemblyName = "SignalFx.Tracing, Version=0.2.8.0, Culture=neutral, PublicKeyToken=e43a27c2023d388a";
private const string AzureAppServicesKey = "SIGNALFX_AZURE_APP_SERVICES";
private const string AasCustomTracingKey = "SIGNALFX_AAS_ENABLE_CUSTOM_TRACING";
private const string AasCustomMetricsKey = "SIGNALFX_AAS_ENABLE_CUSTOM_METRICS";
Expand Down
2 changes: 1 addition & 1 deletion tracer/src/Datadog.Trace.ClrProfiler.Native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake_policy(SET CMP0015 NEW)
# Project definition
# ******************************************************

project("SignalFx.Tracing.ClrProfiler.Native" VERSION 0.2.7)
project("SignalFx.Tracing.ClrProfiler.Native" VERSION 0.2.8)

# ******************************************************
# Environment detection
Expand Down
8 changes: 4 additions & 4 deletions tracer/src/Datadog.Trace.ClrProfiler.Native/Resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,2,7,0
PRODUCTVERSION 0,2,7,0
FILEVERSION 0,2,8,0
PRODUCTVERSION 0,2,8,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -67,12 +67,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "SignalFx"
VALUE "FileDescription", "SignalFx CLR Profiler"
VALUE "FileVersion", "0.2.7.0"
VALUE "FileVersion", "0.2.8.0"
VALUE "InternalName", "SignalFx.Tracing.ClrProfiler.Native.DLL"
VALUE "LegalCopyright", "Copyright (C) 2021-2023"
VALUE "OriginalFilename", "SignalFx.Tracing.ClrProfiler.Native.DLL"
VALUE "ProductName", "SignalFx .NET Tracing"
VALUE "ProductVersion", "0.2.7"
VALUE "ProductVersion", "0.2.8"
END
END
BLOCK "VarFileInfo"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const shared::WSTRING system_private_corelib_assemblyName = WStr("System.Private
const shared::WSTRING datadog_trace_clrprofiler_managed_loader_assemblyName = WStr("SignalFx.Tracing.ClrProfiler.Managed.Loader");

const shared::WSTRING managed_profiler_full_assembly_version =
WStr("SignalFx.Tracing, Version=0.2.7.0, Culture=neutral, PublicKeyToken=e43a27c2023d388a");
WStr("SignalFx.Tracing, Version=0.2.8.0, Culture=neutral, PublicKeyToken=e43a27c2023d388a");

const shared::WSTRING managed_profiler_name = WStr("SignalFx.Tracing");

Expand Down Expand Up @@ -121,7 +121,7 @@ const AssemblyProperty managed_profiler_assembly_property = AssemblyProperty(
123, 102, 42, 57, 219, 122, 95, 191, 59, 10, 120, 157, 167, 170, 1, 81, 183, 182, 51, 111,
204, 130, 205, 122, 20, 157, 247, 246, 102, 245, 57, 108, 141, 233, 44, 166, 68, 215, 162, 209},
160, 32772, 1)
.WithVersion(0, 2, 7, 0);
.WithVersion(0, 2, 8, 0);

} // namespace trace

Expand Down
2 changes: 1 addition & 1 deletion tracer/src/Datadog.Trace.ClrProfiler.Native/version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#pragma once

constexpr auto PROFILER_VERSION = "0.2.7";
constexpr auto PROFILER_VERSION = "0.2.8";
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>0.2.7</Version>
<Version>0.2.8</Version>
<AssemblyName>SignalFx.Tracing.MSBuild</AssemblyName>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<!-- NuGet -->
<Version>0.2.7</Version>
<Version>0.2.8</Version>
<Title>SignalFx Tracing OpenTracing</Title>
<Description>Provides OpenTracing support for SignalFx Tracing</Description>
<AssemblyName>SignalFx.Tracing.OpenTracing</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion tracer/src/Datadog.Trace/Datadog.Trace.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<!-- NuGet -->
<Version>0.2.7</Version>
<Version>0.2.8</Version>
<Title>SignalFx .NET Tracing</Title>
<Description>SignalFx .NET Tracing library</Description>
<AssemblyName>SignalFx.Tracing</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion tracer/src/Datadog.Trace/Tracer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ private static void RegisterGlobalTracer(Tracer instance)
return;
}

var signalFxOpenTracingAssembly = Assembly.Load(new AssemblyName("SignalFx.Tracing.OpenTracing, Version=0.2.7.0, Culture=neutral, PublicKeyToken=e43a27c2023d388a"));
var signalFxOpenTracingAssembly = Assembly.Load(new AssemblyName("SignalFx.Tracing.OpenTracing, Version=0.2.8.0, Culture=neutral, PublicKeyToken=e43a27c2023d388a"));
var openTracingTracerFactoryType = signalFxOpenTracingAssembly.GetType("Datadog.Trace.OpenTracing.OpenTracingTracerFactory");
var methodInfo = openTracingTracerFactoryType.GetMethod("RegisterGlobalTracerIfAbsent");
object[] args = { instance };
Expand Down
2 changes: 1 addition & 1 deletion tracer/src/Datadog.Trace/TracerConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ internal static class TracerConstants
/// </summary>
public const ulong MaxTraceId = 9_223_372_036_854_775_807;

public static readonly string AssemblyVersion = "0.2.7.0";
public static readonly string AssemblyVersion = "0.2.8.0";
}
}
4 changes: 2 additions & 2 deletions tracer/src/WindowsInstaller/WindowsInstaller.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<IntermediateOutputPath>obj\$(Configuration)\$(Platform)\</IntermediateOutputPath>
<SuppressPdbOutput>True</SuppressPdbOutput>
<DefineSolutionProperties>false</DefineSolutionProperties>
<OutputName>signalfx-dotnet-tracing-0.2.7-$(Platform)</OutputName>
<OutputName>signalfx-dotnet-tracing-0.2.8-$(Platform)</OutputName>
<TracerHomeDirectory Condition="'$(TracerHomeDirectory)' == ''">$(MSBuildThisFileDirectory)..\bin\dd-tracer-home</TracerHomeDirectory>
<DefineConstants>InstallerVersion=0.2.7;TracerHomeDirectory=$(TracerHomeDirectory)</DefineConstants>
<DefineConstants>InstallerVersion=0.2.8;TracerHomeDirectory=$(TracerHomeDirectory)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DefineConstants>$(DefineConstants);Debug</DefineConstants>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void SubmitTraces(string packageVersion)
AssertTargetSpanEqual(targetSpan, "signalfx.tracing.library", "dotnet-tracing");

// check the SignalFx library version
AssertTargetSpanEqual(targetSpan, "signalfx.tracing.version", "0.2.7.0");
AssertTargetSpanEqual(targetSpan, "signalfx.tracing.version", "0.2.8.0");

// checks the runtime id tag
AssertTargetSpanExists(targetSpan, Tags.RuntimeId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void SubmitTraces(string packageVersion)
AssertTargetSpanEqual(targetSpan, "signalfx.tracing.library", "dotnet-tracing");

// check the SignalFx library version
AssertTargetSpanEqual(targetSpan, "signalfx.tracing.version", "0.2.7.0");
AssertTargetSpanEqual(targetSpan, "signalfx.tracing.version", "0.2.8.0");

// checks the runtime id tag
AssertTargetSpanExists(targetSpan, Tags.RuntimeId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void SubmitTraces(string packageVersion)
AssertTargetSpanEqual(targetSpan, "signalfx.tracing.library", "dotnet-tracing");

// check the SignalFx library version
AssertTargetSpanEqual(targetSpan, "signalfx.tracing.version", "0.2.7.0");
AssertTargetSpanEqual(targetSpan, "signalfx.tracing.version", "0.2.8.0");

// checks the origin tag
CheckOriginTag(targetSpan);
Expand Down
2 changes: 1 addition & 1 deletion tracer/tools/PipelineMonitor/PipelineMonitor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Datadog.Trace" Version="0.2.7" />
<PackageReference Include="Datadog.Trace" Version="0.2.8" />
</ItemGroup>

</Project>

0 comments on commit c3369c0

Please sign in to comment.