From cb00a99b8d32d04b4647c32811ba9c86446d36ae Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Fri, 5 Apr 2024 23:31:56 +0200 Subject: [PATCH] Released as v3.12.0 --- ChangeLog | 23 +++++++++++++++++++++++ Makefile | 4 ++-- lib/pci.h | 2 +- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index bf7dc22..6512888 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,26 @@ +2024-04-05 Martin Mares + + * lspci decodes the IDE (Integrity & Data Encryption) and TEE-IO + extended capabilities. + + * Several bugs in back-ends for Windows were fixed and the + README.Windows updated. + + * Fixed building on Haiku. + + * We now use more C99 features. + + * Optimization flags used for compiling individual object files + should be the same as optimization flags for linking the final + executable to make link-time optimization possible. + + * We no longer look up subsystems in the HWDB, because there is + no API for querying only the subsystem. The lookup we used + previously returned a device name if there was no entry for + the particular subsystem. + + * Updated pci.ids. + 2024-02-25 Martin Mares * Released as 3.11.1. diff --git a/Makefile b/Makefile index 37333c1..be23593 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,8 @@ OPT=-O2 CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -VERSION=3.11.1 -DATE=2024-02-25 +VERSION=3.12.0 +DATE=2024-04-05 # Host OS and release (override if you are cross-compiling) HOST= diff --git a/lib/pci.h b/lib/pci.h index a5c7424..4b5f6c1 100644 --- a/lib/pci.h +++ b/lib/pci.h @@ -18,7 +18,7 @@ #include "header.h" #include "types.h" -#define PCI_LIB_VERSION 0x030b01 +#define PCI_LIB_VERSION 0x030c00 #ifndef PCI_ABI #define PCI_ABI -- 2.39.2