summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArkadiusz Hiler <arkadiusz.hiler@intel.com>2018-07-18 00:21:44 +0300
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2018-07-18 10:56:13 +0300
commit4b728a52c7852408742c3e40f7af7cf418aeaf5d (patch)
tree1423c17abdd0d9468684fa4b2013381902e92237
parent7ac224accce1f230d5d3e564c0d7e4d4869d41c5 (diff)
Update NEWS, bump version to 1.23.igt-gpu-tools-1.23
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Acked-by: Petri Latvala <petri.latvala@intel.com>
-rw-r--r--NEWS62
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 64 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index c542c60b7..b974bd457 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,65 @@
+Release 1.23 (2018-07-18)
+-------------------------
+
+General changes:
+
+- Bumped used C standard to gnu11. (Lucas De Marchi)
+
+- Bumped required meson version to 0.44. (Petri Latvala)
+
+- Introduced meson options for explicit control over optional dependencies.
+ (Petri Latvala)
+
+- Added a meson option to set runpath for the installed executables.
+ (Petri Latvala)
+
+- GLib is now a mandatory dependency. (Petri Latvala)
+
+- Added testlists for the vc4 driver. (Maxime Ripard)
+
+- The project has now finalized its name change and is now IGT GPU Tools,
+ docs and install paths are now "igt-gpu-tools". (Arkadiusz Hiler)
+
+- Added a blacklist for the Intel CI. (Petri Latvala)
+
+
+Library changes:
+
+- i915_pciids.h updated to include KBL, ICL, WHL and AML.
+ (José Roberto de Souza, Paulo Zanoni)
+
+- Overhaul of gpu_cmds, gpgpu_fill, media_fill and rendercopy.
+ (Katarzyna Dec, Lukasz Kalamarz)
+
+- Added igt_matrix and igt_color_encoding helper libraries. (Ville Syrjälä)
+
+- IGT now shows the kernel stack trace when reporting a GPU hang. (Chris Wilson)
+
+- Added Icelake platform support. (Arkadiusz Hiler, Paulo Zanoni)
+
+
+Tools changes:
+
+- intel-gpu-top was rewritten to be safe to use. (Tvrtko Ursulin)
+
+
+Documentation changes:
+
+- Documented commit rights in CONTRIBUTING. (Daniel Vetter)
+
+
+Test changes:
+
+- kms_prs_sink_crc was renamed to kms_psr. (Dhinakaran Pandiyan)
+
+- kms_frontbuffer_tracking no longer tests sink crc. (Dhinakaran Pandiyan)
+
+- drm_vma_limiter is no more. (Chris Wilson)
+
+
+And many other bug fixes, improvements, cleanups and new tests.
+
+
Release 1.22 (2018-03-09)
-------------------------
diff --git a/configure.ac b/configure.ac
index 195963d4f..0a5b0425e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
AC_PREREQ([2.60])
AC_INIT([igt-gpu-tools],
- [1.22],
+ [1.23],
[https://bugs.freedesktop.org/enter_bug.cgi?product=DRI&component=IGT],
[igt-gpu-tools])
diff --git a/meson.build b/meson.build
index 8d4d75cfa..5a931565e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('igt-gpu-tools', 'c',
- version : '1.22',
+ version : '1.23',
default_options: [
'warning_level=2',
'c_std=gnu11',