diff --git a/NEWS b/NEWS index 650cdb81..1d9c627a 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +Overview of changes in Sysprof 3.46.0 +===================================== + + * sysprof-cli is now statically linked + * sysprof-agent now has a --decode option to decode symbols at the end + of a capture, similar to what sysprof-cli can do. + * A crash in the Elf symbol resolver has been fixed. + * Translation updates + Overview of changes in Sysprof 3.45.1 ===================================== diff --git a/meson.build b/meson.build index a4b6e39f..fb44815f 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('sysprof', 'c', license: ['GPL3+', 'GPL2+'], - version: '3.45.2', + version: '3.46.0', meson_version: '>=0.59.0', default_options: [ 'c_std=gnu11', 'cpp_std=c++11', @@ -8,7 +8,7 @@ project('sysprof', 'c', ] ) -symbolic_version = '43.alpha0' +symbolic_version = '43.0' gnome = import('gnome', required: get_option('gtk')) pkgconfig = import('pkgconfig')