Bump version to 2.12.0
This commit is contained in:
parent
add5f7329f
commit
505712d1dc
22
README
22
README
|
@ -1,12 +1,30 @@
|
|||
Fontconfig
|
||||
Font configuration and customization library
|
||||
Version 2.11.95 (2.12 RC5)
|
||||
2016-04-06
|
||||
Version 2.12
|
||||
2016-06-15
|
||||
|
||||
|
||||
Check INSTALL for compilation and installation instructions.
|
||||
Report bugs to https://bugs.freedesktop.org in the fontconfig module.
|
||||
|
||||
2.12
|
||||
|
||||
Akira TAGOH (8):
|
||||
Modernize fc-blanks.py
|
||||
Update URL
|
||||
Bug 95477 - FcAtomicLock fails when SELinux denies link() syscall with EACCES
|
||||
45-latin.conf: Add some Windows fonts to categorize them properly
|
||||
Correct one for the previous change
|
||||
Bug 95481 - Build fails on Android due to broken lconv struct
|
||||
Add the static raw data to generate fcblanks.h
|
||||
Remove unused code
|
||||
|
||||
Erik de Castro Lopo (1):
|
||||
Fix a couple of minor memory leaks
|
||||
|
||||
Petr Filipsky (1):
|
||||
Fix memory leak in FcDirCacheLock
|
||||
|
||||
2.11.95 (2.12 RC5)
|
||||
|
||||
Akira TAGOH (22):
|
||||
|
|
|
@ -33,7 +33,7 @@ dnl This is the package version number, not the shared library
|
|||
dnl version. This same version number must appear in fontconfig/fontconfig.h
|
||||
dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
|
||||
dnl not possible to extract the version number here from fontconfig.h
|
||||
AC_INIT([fontconfig], [2.11.95], [https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig])
|
||||
AC_INIT([fontconfig], [2.12.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig])
|
||||
AM_INIT_AUTOMAKE([1.11 parallel-tests dist-bzip2])
|
||||
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
||||
|
||||
|
|
|
@ -51,8 +51,8 @@ typedef int FcBool;
|
|||
*/
|
||||
|
||||
#define FC_MAJOR 2
|
||||
#define FC_MINOR 11
|
||||
#define FC_REVISION 95
|
||||
#define FC_MINOR 12
|
||||
#define FC_REVISION 0
|
||||
|
||||
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
|
||||
|
||||
|
|
Loading…
Reference in New Issue