Skip to content

Commit 949f446

Browse files
committed
Released as 3.3.1.
1 parent f96126a commit 949f446

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

ChangeLog

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2015-04-09 Martin Mares <[email protected]>
2+
3+
* Released as 3.3.1.
4+
5+
* Removed hacks for backward compatibility with Linux libc5,
6+
which were breaking newer non-glibc Linux systems. Thanks
7+
to Felix Janda.
8+
9+
* Display VirtIO vendor-specific capability. Patch by Gerd
10+
Hoffmann.
11+
12+
* Fixed memory leak in name cache.
13+
114
2014-11-10 Martin Mares <[email protected]>
215

316
* Released as 3.3.0.

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Makefile for The PCI Utilities
2-
# (c) 1998--2014 Martin Mares <[email protected]>
2+
# (c) 1998--2015 Martin Mares <[email protected]>
33

44
OPT=-O2
55
CFLAGS=$(OPT) -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes
66

7-
VERSION=3.3.0
8-
DATE=2014-11-10
7+
VERSION=3.3.1
8+
DATE=2015-04-09
99

1010
# Host OS and release (override if you are cross-compiling)
1111
HOST=

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
This package contains the PCI Utilities, version @VERSION@.
22

3-
Copyright (c) 1997--2014 Martin Mares <[email protected]>
3+
Copyright (c) 1997--2015 Martin Mares <[email protected]>
44

55
All files in this package can be freely distributed and used according
66
to the terms of the GNU General Public License, either version 2 or

lib/pci.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* The PCI Library
33
*
4-
* Copyright (c) 1997--2014 Martin Mares <[email protected]>
4+
* Copyright (c) 1997--2015 Martin Mares <[email protected]>
55
*
66
* Can be freely distributed and used under the terms of the GNU GPL.
77
*/
@@ -16,7 +16,7 @@
1616
#include "header.h"
1717
#include "types.h"
1818

19-
#define PCI_LIB_VERSION 0x030300
19+
#define PCI_LIB_VERSION 0x030301
2020

2121
#ifndef PCI_ABI
2222
#define PCI_ABI

0 commit comments

Comments
 (0)