summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS43
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 45 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 80136fada..b6d095822 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,46 @@
+Release 1.20 (2017-10-03)
+-------------------------
+
+Library changes:
+
+- Added helpers for launching external processes and capturing their
+ outputs. (Abdiel Janulgue)
+
+- Increased max pipe count to 6 to support AMD GPUs. (Leo (Sunpeng) Li)
+
+- Various improvements for Chamelium support. (Paul Kocialkowski)
+
+- Added Coffeelake platform support. (Rodrigo Vivi, Anusha Srivatsa)
+
+- Added Cannonlake platform support. (Rodrigo Vivi)
+
+- Added support for audio testing. (Paul Kocialkowski)
+
+- Added preliminary meson build system support. (Daniel Vetter, et al)
+ -- Autotools remains the supported build system for now.
+
+Tools changes:
+
+- Refactored video bios data to use definitions copied from the
+ kernel. (Jani Nikula)
+
+Documentation changes:
+
+- Added user and developer documentation about Chamelium support to
+ aid deploying the platform. (Paul Kocialkowski)
+
+- Added documentation about the required hardware setup for audio
+ testing. (Paul Kocialkowski)
+
+Tests changes:
+
+- Converted remaining shell-script tests to C code (Abdiel Janulgue)
+
+- Multiple new tests.
+
+
+And many other bug fixes and improvements.
+
Release 1.19 (2017-06-09)
-------------------------
diff --git a/configure.ac b/configure.ac
index 01bb2f49d..53ef704e4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
AC_PREREQ([2.60])
AC_INIT([intel-gpu-tools],
- [1.19],
+ [1.20],
[https://bugs.freedesktop.org/enter_bug.cgi?product=DRI&component=IGT],
[intel-gpu-tools])
diff --git a/meson.build b/meson.build
index 7a0922829..310174a51 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('IGT gpu tests', 'c',
- version : '1.19',
+ version : '1.20',
default_options: [
'warning_level=2',
'c_std=gnu99',