summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Latvala <petri.latvala@intel.com>2018-01-16 15:23:20 +0200
committerPetri Latvala <petri.latvala@intel.com>2018-01-16 15:43:38 +0200
commit7b685d5790c1770eeac43c17d6b207a6df602985 (patch)
tree43293bd44a246505fdf70c67242e83c3876295ad
parent184a8d68ca072204d4efee069783614bb1bd610e (diff)
Update NEWS, bump version to 1.21.intel-gpu-tools-1.21
Signed-off-by: Petri Latvala <petri.latvala@intel.com> Acked-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
-rw-r--r--NEWS59
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 58 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 885c1baf3..9d303a505 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,61 @@
-Release 1.21
+Release 1.21 (2018-01-16)
------------
-- Upgrade meson to official production status, automake is still kept around for
- now.
+Library changes:
+
+- Added helpers for using DRM syncobj. (Jason Ekstrand)
+
+- Refactored several i915 helpers into library functions.
+ (Michał Winiarski)
+
+- Improved the GPU quiescing code to more thoroughly flush old data
+ and pending work. (Chris Wilson)
+
+- Reworked DRM property handling to be more suitable for
+ atomic commits. (Maarten Lankhorst)
+
+- Removed support for legacy CRC API. The generic API has been
+ available since kernel 4.10. (Maarten Lankhorst)
+
+- Opening a DRM device now automatically loads its module. (Chris Wilson)
+
+- Imported the drm-uapi headers as copies instead of using what's
+ installed in the system. (Eric Anholt)
+
+- Moved the perf code to its own library from
+ intel-gpu-overlay. (Tvrtko Ursulin)
+
+- Removed Android support due to lack of use and
+ maintenance. (Arkadiusz Hiler)
+
+- Upgraded meson to official production status, automake is still kept
+ around for now.
+
+Tools changes:
+
+- Improved the output of intel_vbt_decode. (Jani Nikula)
+
+- intel_error_decode now prints user buffers if they contain debug
+ logs. (Chris Wilson)
+
+- Improved the output of intel_watermark. (Ville Syrjälä,
+ Dhinakaran Pandiyan)
+
+- Aubdump can now simulate execlist submission, converting from ring
+ buffer submission method. (Scott D Phillips)
+
+- intel-gpu-overlay can now show data from perf PMU. (Tvrtko Ursulin,
+ Chris Wilson)
+
+- intel-gpu-overlay now parses tracepoint locations from
+ sysfs. (Lionel Landwerlin)
+
+Documentation changes:
+
+- Documentation can now be built with Meson. (Daniel Vetter)
+
+
+And many other bug fixes, improvements, cleanups and new tests.
Release 1.20 (2017-10-03)
-------------------------
diff --git a/configure.ac b/configure.ac
index 7e8475744..e13a3b742 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
AC_PREREQ([2.60])
AC_INIT([intel-gpu-tools],
- [1.20],
+ [1.21],
[https://bugs.freedesktop.org/enter_bug.cgi?product=DRI&component=IGT],
[intel-gpu-tools])
diff --git a/meson.build b/meson.build
index 36403352c..5f12653b6 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('intel-gpu-tools', 'c',
- version : '1.20',
+ version : '1.21',
default_options: [
'warning_level=2',
'c_std=gnu99',