summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Latvala <petri.latvala@intel.com>2019-06-20 14:52:12 +0300
committerPetri Latvala <petri.latvala@intel.com>2019-06-20 15:14:56 +0300
commit22850c1906550fb97b405c019275dcfb34be8cf7 (patch)
tree3452e93e892350ae623ae711ba596e62a6fce952
parentacd15523ea83290ff816be65218de6ecacaf0201 (diff)
Update NEWS, bump version to 1.24.igt-gpu-tools-1.24
Signed-off-by: Petri Latvala <petri.latvala@intel.com> Acked-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
-rw-r--r--NEWS40
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 36 insertions, 8 deletions
diff --git a/NEWS b/NEWS
index f4e96c690..d94374fa3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,39 @@
-Unreleased
-----------
+Release 1.24 (2019-06-20)
+-------------------------
-General changes:
+- Bumped required meson version to 0.47. (Arkadiusz Hiler)
+
+- All the meson build options that used auto, true and false are now first
+ class 'feature' options taking auto, enabled and disabled. (Arkadiusz Hiler)
+
+- Piglit as the primary test executor replaced by mostly drop-in
+ compatible igt_runner. (Petri Latvala)
+
+- Stack traces now contain source file names and line numbers, using
+ libdw. (Maarten Lankhorst)
+
+- Pixman dependency is now mandatory. (Maxime Ripard)
+
+- The project has moved to gitlab, and uses gitlab's CI to build test
+ and sanity test each commit on various distributions and
+ architectures. (Arkadiusz Hiler et al)
+
+- Shader debugger removed due to lack of use and accumulation of
+ bitrot. (Arkadiusz Hiler)
+
+- Added support for testing DP/HDMI audio with the Chamelium device,
+ dropping the audio tests that required exotic custom hardware to
+ execute. (Simon Ser)
+
+- Autotools support dropped for various parts of IGT (assembler,
+ documentation, etc). (Daniel Vetter)
+
+- intel-gpu-top can now output data to stdout or a log file for
+ noninteractive use. (Tvrtko Ursulin)
+
+
+And many other bug fixes, improvements, cleanups and new tests.
- - Bumped required meson version to 0.47. (Arkadiusz Hiler)
- - All the meson build options that used auto, true and false are now first
- class 'feature' options taking auto, enabled and disabled (Arkadiusz Hiler)
Release 1.23 (2018-07-18)
-------------------------
diff --git a/configure.ac b/configure.ac
index 90f38da1d..f9e4942e2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
AC_PREREQ([2.60])
AC_INIT([igt-gpu-tools],
- [1.23],
+ [1.24],
[https://bugs.freedesktop.org/enter_bug.cgi?product=DRI&component=IGT],
[igt-gpu-tools])
diff --git a/meson.build b/meson.build
index 6268c58d3..b1028ee6a 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('igt-gpu-tools', 'c',
- version : '1.23',
+ version : '1.24',
default_options: [
'warning_level=2',
'c_std=gnu11',