summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS50
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 51 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 9d303a505..c542c60b7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,53 @@
+Release 1.22 (2018-03-09)
+-------------------------
+
+General changes:
+
+- Libudev has been made a mandatory dependency. (Antonio Argenziano)
+
+- Documentation changed to refer to the new igt-dev mailing
+ list. (Rhys Kidd)
+
+Library changes:
+
+- Refactored timer usage for smaller code size. (Chris Wilson)
+
+- Various fixes to support planar framebuffers. (Maarten Lankhorst)
+
+- Added support for fetching the most recent CRC without waiting for a
+ vblank, along with flushing the queue of already collected
+ CRCs. (Maarten Lankhorst)
+
+- Added a helper to mark BOs purgeable on vc4. (Boris Brezillon)
+
+- Moved handling of a "cork" BO into lib from various tests.
+ (Daniele Ceraolo Spurio)
+
+- Added support for looping over physical i915 engines, as opposed to
+ uABI engines that can alias. (Chris Wilson)
+
+- Added an accelerated method for reading from WC buffers.
+ (Chris Wilson)
+
+Tools changes:
+
+- Improved intel_vbt_decode output, updated the data from current
+ kernel. (Jani Nikula)
+
+- intel_reg can now read/write registers using a given engine.
+ (Mika Kuoppala)
+
+- Aubdump can now simulate enhanced execlist submission, for
+ gen11+. (Scott D Phillips)
+
+
+
+
+
+And many other bug fixes, improvements, cleanups and new tests.
+
Release 1.21 (2018-01-16)
-------------
+-------------------------
Library changes:
diff --git a/configure.ac b/configure.ac
index 715eb12c3..c5ee78bb1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
AC_PREREQ([2.60])
AC_INIT([intel-gpu-tools],
- [1.21],
+ [1.22],
[https://bugs.freedesktop.org/enter_bug.cgi?product=DRI&component=IGT],
[intel-gpu-tools])
diff --git a/meson.build b/meson.build
index c4efc19be..ef7017cbc 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('intel-gpu-tools', 'c',
- version : '1.21',
+ version : '1.22',
default_options: [
'warning_level=2',
'c_std=gnu99',