summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 d4e381e3..e5b0045f 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 2ff82c67..d5908cd0 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 0d7092bd..f4ee14f1 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',