diff options
author | Kamil Konieczny <kamil.konieczny@linux.intel.com> | 2025-06-27 13:49:21 +0200 |
---|---|---|
committer | Kamil Konieczny <kamil.konieczny@linux.intel.com> | 2025-06-27 14:01:17 +0200 |
commit | 4871829d8b7117553eb2dc1bdb9a0d18de428a98 (patch) | |
tree | 5f63a2bcb697034df591c47bb473db94e1b2dad0 | |
parent | 9a90ca7da07ea946e67297ef486ead97d07bee3c (diff) |
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Acked-by: Petri Latvala <adrinael@adrinael.net> #irc
Acked-by: Karthik B S <karthik.b.s@intel.com>
-rw-r--r-- | NEWS | 80 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 81 insertions, 1 deletions
@@ -1,3 +1,83 @@ +Release 2.01 (2025-06-27) +------------------------- + +General changes: + +- Bumped required meson version to 0.52.1 (Andrzej Hajda) + +- Added man page for lsgpu. (Peter Senna Tschudin) + +Devops changes: + +- Improved GitLab CI pipeline. (Andrzej Hajda) + +- Bumped Debian version to bullseye and Fedora to latest 42 (Andrzej Hajda) + +- Removed MIPS testing (Ryszard Knop and Andrzej Hajda) + +Library changes: + +- Updated PCI ids for BMG/PTL. (Shekhar Chauhan and Kamil Konieczny) + +- Preliminary enablement for Android compilation (Sapna Singh and Jeevaka + Prabu Badrappan) + +- Improved kernel module un/binding. (Lucas De Marchi and Francois Dugast) + +- Added user mode queues UMQ support for amdgpu. (Sunil Khatri) + +- Improved Intel GPGPU compute libs. (Francois Dugast and Zbigniew Kempczyński) + +- New configfs library. (José Expósito, Jim Shargo, Marius Vlad, Riana Tauro) + +- Added PTL support in Xe OA libs. (Sushma Venkatesh Reddy) + +- Improved capturing logs for child processes. (Pawel Sikora) + +Test changes: + +- New test drm_virtgpu for VirtIO-GPU. (Dorinda Bassey) + +- New Xe survivability mode testing. (Riana Tauro) + +- New amdgpu tests for jpeg and vcn queues. (Ruili Ji) + +- New Xe system allocator test. (Matthew Brost). + +- Improved Xe fault injection. (Satyanarayana K V P) + +- New Xe PXP test. (Daniele Ceraolo Spurio) + +- Unified Intel sysfs and debugfs testing. (Peter Senna Tschudin) + +- Improved chamelium color test. (Swati Sharma) + +- Improved Xe OA testing. (Ashutosh Dixit, Sai Teja Pottumuttu and Umesh + Nerlige Ramappa) + +- Added dual display subtest in multi plane test. (Karthik B S) + +Tools changes: + +- New tool intel_hdcp for printing HDCP info on connected outputs. (Santhosh + Reddy Guddati) + +- Add support for gen10+ devices in intel_gtt (Tomita Moeko) + +- Add support for Xe in intel_pm_rpm (Soham Purkait) + +Runner changes: + +- Use boottime for time checks. (Kamil Konieczny) + +Benchmark changes: + +- New Xe benchmarks. (Pravalika Gurram) + + +And many other bug fixes, improvements, cleanups and new tests. + + Release 2.00 (2025-03-13) ------------------------- diff --git a/meson.build b/meson.build index 3d18267e6..468204cda 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('igt-gpu-tools', 'c', - version : '2.0', + version : '2.1', default_options: [ 'warning_level=2', 'c_std=gnu11', |