diff options
author | Petri Latvala <petri.latvala@intel.com> | 2017-10-04 13:48:15 +0300 |
---|---|---|
committer | Petri Latvala <petri.latvala@intel.com> | 2017-10-04 16:41:21 +0300 |
commit | 7f93a2632aae7c5865823b4a2fa4cd8c2a1c0977 (patch) | |
tree | d2783c56cbf29c392db15d4a0906bbc0f4e2d0ac | |
parent | 332108184493d0b58963ffe13f9b568a6fa462df (diff) |
Update NEWS, bump version to 1.20.intel-gpu-tools-1.20
Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Acked-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
-rw-r--r-- | NEWS | 43 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 45 insertions, 2 deletions
@@ -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', |