Skip to content

Commit d956937

Browse files
committed
bumps version to 0.7.0
1 parent 596cd4c commit d956937

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/tag_linux.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,17 @@ jobs:
3232
cd build-release
3333
cmake .. -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Release
3434
make -j6 Datadog.Profiler.Native Datadog.Linux.ApiWrapper.x64
35+
cd ../profiler/_build/DDProf-Deploy/linux-x64/
36+
cp Datadog.Profiler.Native.so Pyroscope.Profiler.Native.so
37+
cp Datadog.Linux.ApiWrapper.x64.so Pyroscope.Linux.ApiWrapper.x64.so
3538
3639
- name: Release
3740
uses: softprops/action-gh-release@v1
3841
if: startsWith(github.ref, 'refs/tags/')
3942
with:
4043
files: |
41-
./profiler/_build/DDProf-Deploy/linux-x64/Datadog.Linux.ApiWrapper.x64.so
42-
./profiler/_build/DDProf-Deploy/linux-x64/Datadog.Profiler.Native.so
44+
./profiler/_build/DDProf-Deploy/linux-x64/Pyroscope.Linux.ApiWrapper.x64.so
45+
./profiler/_build/DDProf-Deploy/linux-x64/Pyroscope.Profiler.Native.so
4346
4447
4548

Pyroscope/Pyroscope/Pyroscope.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
8-
<PackageVersion>0.6.0</PackageVersion>
9-
<AssemblyVersion>0.6.0</AssemblyVersion>
10-
<FileVersion>0.6.0</FileVersion>
8+
<PackageVersion>0.7.0</PackageVersion>
9+
<AssemblyVersion>0.7.0</AssemblyVersion>
10+
<FileVersion>0.7.0</FileVersion>
1111
<LangVersion>10</LangVersion>
1212
</PropertyGroup>
1313

profiler/src/ProfilerEngine/Datadog.Profiler.Native/OpSysTools.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ bool OpSysTools::IsSafeToStartProfiler(double coresThreshold)
344344

345345
// We assume that the profiler library is in the same folder as the wrapper library
346346
auto currentModulePath = fs::path(shared::GetCurrentModuleFileName());
347-
auto wrapperLibrary = currentModulePath.parent_path() / "Datadog.Linux.ApiWrapper.x64.so";
347+
auto wrapperLibrary = currentModulePath.parent_path() / "Pyroscope.Linux.ApiWrapper.x64.so";
348348
auto wrapperLibraryPath = wrapperLibrary.string();
349349

350350
auto* instance = dlopen(wrapperLibraryPath.c_str(), RTLD_LAZY | RTLD_LOCAL);
@@ -383,4 +383,4 @@ bool OpSysTools::IsSafeToStartProfiler(double coresThreshold)
383383
return true;
384384

385385
#endif
386-
}
386+
}

0 commit comments

Comments
 (0)