mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 18:33:11 +00:00
8264c70e0b
This bumps the release number of 2.0.0, to reflect the switch to a new time based release versioning scheme. The downloads page is updated to describe our policies for release schedules and release version numbering The stable release docs are changed to reflect the fact that the stable version numbers are now just 3 digits long instead of 4. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
28 lines
732 B
Plaintext
28 lines
732 B
Plaintext
#
|
|
# Officially exported symbols, for which header
|
|
# file definitions are installed in /usr/include/libvirt
|
|
# from libvirt-lxc.h
|
|
#
|
|
# Versions here are *fixed* to match the libvirt version
|
|
# at which the symbol was introduced. This ensures that
|
|
# a new client app requiring symbol foo() can't accidentally
|
|
# run with old libvirt-lxc.so not providing foo() - the global
|
|
# soname version info can't enforce this since we never
|
|
# change the soname
|
|
#
|
|
LIBVIRT_LXC_1.0.2 {
|
|
global:
|
|
virDomainLxcEnterNamespace;
|
|
virDomainLxcOpenNamespace;
|
|
};
|
|
|
|
LIBVIRT_LXC_1.0.4 {
|
|
global:
|
|
virDomainLxcEnterSecurityLabel;
|
|
} LIBVIRT_LXC_1.0.2;
|
|
|
|
LIBVIRT_LXC_2.0.0 {
|
|
global:
|
|
virDomainLxcEnterCGroup;
|
|
} LIBVIRT_LXC_1.0.4;
|