From 08f8e6666a69595ba4532f16a46b9dc46b677860 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 25 Feb 2024 00:11:10 +0100 Subject: Releasing as v3.11.1. --- ChangeLog | 10 ++++++++++ Makefile | 4 ++-- lib/pci.h | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4e8d6a9..bf7dc22 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2024-02-25 Martin Mares + + * Released as 3.11.1. + + * Fixed wrong API version in lib/pci.h. + + * Updated README.Windows. + + * Fix compilation on Windows. + 2024-02-24 Martin Mares * Released as 3.11.0. diff --git a/Makefile b/Makefile index b76791c..aaec04e 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,8 @@ OPT=-O2 CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -VERSION=3.11.0 -DATE=2024-02-24 +VERSION=3.11.1 +DATE=2024-02-25 # Host OS and release (override if you are cross-compiling) HOST= diff --git a/lib/pci.h b/lib/pci.h index 447118c..ae1333f 100644 --- a/lib/pci.h +++ b/lib/pci.h @@ -1,7 +1,7 @@ /* * The PCI Library * - * Copyright (c) 1997--2023 Martin Mares + * Copyright (c) 1997--2024 Martin Mares * * Can be freely distributed and used under the terms of the GNU GPL v2+ * @@ -18,7 +18,7 @@ #include "header.h" #include "types.h" -#define PCI_LIB_VERSION 0x030a00 +#define PCI_LIB_VERSION 0x030b01 #ifndef PCI_ABI #define PCI_ABI -- cgit 1.2.3-korg