summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArkadiusz Hiler <arkadiusz.hiler@intel.com>2020-03-20 13:49:21 +0200
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2020-03-20 14:30:16 +0200
commitf49ebeee9f54d6f23c60a842f75f65561d452ab0 (patch)
tree3aff21700e194b385c800f63c88e8a381763ecce
parent7d2ad0888018ffa6e0acd460a6fad14c08c92c46 (diff)
Update NEWS, bump version to 1.25igt-gpu-tools-1.25
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Acked-by: Petri Latvala <petri.latvala@intel.com>
-rw-r--r--NEWS46
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 43 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index d4e381e35..e5b0045f7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,45 @@
-Unreleased
-----------
+Release 1.25 (2020-03-20)
+-------------------------
+
+- Meson build options have been renamed. Please check the news options in
+ meson_options.txt and make sure you don't get any warnings when configuring
+ the project. (Simon Ser)
+
+- Compile-testing CI for MIPS. (Guillaume Tucker)
+
+- Various igt_runner reliability improvements (Petri Latvala & Arkadiusz Hiler)
+
+- Switched GEM tests to engine discovery. (Tvrtko Ursulin et al)
+
+- Subtests can now be documented and their descriptions are available in
+ generated HTML docs and on the command line via --describe. Documenting new
+ tests is mandatory. (Arkadiusz Hiler)
+
+- Unified library for EDID creation (Simon Ser)
+
+- Chamelium port auto-discovery (Simon Ser)
+
+- Tigerlake support (Lucas De Marchi)
+
+- Cometlake support (Anusha Srivatsa)
+
+- Add kernel selftest wrapper for dmabuf (Chris Wilson)
+
+- Bumped required meson version to 0.47.2 (Arkadiusz Hiler)
+
+- Rewritten README to be more friendly (Arkadiusz Hiler)
+
+- Introduced dynamic subsubtests for getting partial result for
+ runtime-dependant features (Petri Latvala)
+
+- IGT can now run on the selected GPU via --device and lsgpu tool (Zbigniew
+ KempczyƄski)
+
+- Reduced runtime of many many tests (Chris Wilson et al)
+
+
+And many other bug fixes, improvements, cleanups and new tests.
-Meson build options have been renamed. Please check the news options in
-meson_options.txt and make sure you don't get any warnings when configuring the
-project.
Release 1.24 (2019-06-20)
-------------------------
diff --git a/configure.ac b/configure.ac
index 2ff82c675..d5908cd0b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
AC_PREREQ([2.60])
AC_INIT([igt-gpu-tools],
- [1.24],
+ [1.25],
[https://bugs.freedesktop.org/enter_bug.cgi?product=DRI&component=IGT],
[igt-gpu-tools])
diff --git a/meson.build b/meson.build
index 0d7092bde..f4ee14f14 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('igt-gpu-tools', 'c',
- version : '1.24',
+ version : '1.25',
default_options: [
'warning_level=2',
'c_std=gnu11',