Skip to content

Commit 31b6ff4

Browse files
committed
Release 0.6.0.
1 parent 3854ae1 commit 31b6ff4

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

‎NEWS‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Note: Release numbers are nothing more than numbers. There are some
66
"missing" versions due to trace file changes during development. This is not
77
a mistake.
88

9-
v0.6 (xxxx-xx-xx)
9+
v0.6 (2019-11-17)
1010
-----------------
1111

1212
This is the last release which will be able to load pre-v0.5 traces. Use the

‎README.md‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ For usage instructions, consult the user manual [at the following address](https
1515
[Introduction to Tracy Profiler v0.2](https://www.youtube.com/watch?v=fB5B46lbapc)
1616
[New features in Tracy Profiler v0.3](https://www.youtube.com/watch?v=3SXpDpDh2Uo)
1717
[New features in Tracy Profiler v0.4](https://www.youtube.com/watch?v=eAkgkaO8B9o)
18-
[New features in Tracy Profiler v0.5](https://www.youtube.com/watch?v=P6E7qLMmzTQ)
18+
[New features in Tracy Profiler v0.5](https://www.youtube.com/watch?v=P6E7qLMmzTQ)
19+
[New features in Tracy Profiler v0.6](https://www.youtube.com/watch?v=uJkrFgriuOo)

‎profiler/src/main.cpp‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,10 @@ int main( int argc, char** argv )
432432
{
433433
OpenWebpage( "https://www.youtube.com/watch?v=P6E7qLMmzTQ" );
434434
}
435+
if( ImGui::Selectable( ICON_FA_VIDEO " New features in Tracy Profiler v0.6" ) )
436+
{
437+
OpenWebpage( "https://www.youtube.com/watch?v=uJkrFgriuOo" );
438+
}
435439
ImGui::EndPopup();
436440
}
437441
ImGui::Separator();

‎server/TracyVersion.hpp‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ namespace tracy
66
namespace Version
77
{
88
enum { Major = 0 };
9-
enum { Minor = 5 };
10-
enum { Patch = 12 };
9+
enum { Minor = 6 };
10+
enum { Patch = 0 };
1111
}
1212
}
1313

0 commit comments

Comments
 (0)