File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
2018-02-01 Dmitry V. Levin <ldv@altlinux.org>
2
2
3
+ * version.h (RELEASE): Set to "stable".
4
+ (VERSION): Set to "2.27".
5
+ * include/features.h (__GLIBC_MINOR__): Set to 2.27.
6
+
3
7
* NEWS: Add the list of bugs fixed in 2.27.
4
8
5
9
2018-02-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
Original file line number Diff line number Diff line change 417
417
/* Major and minor version number of the GNU C library package. Use
418
418
these macros to test for features in specific releases. */
419
419
#define __GLIBC__ 2
420
- #define __GLIBC_MINOR__ 26
420
+ #define __GLIBC_MINOR__ 27
421
421
422
422
#define __GLIBC_PREREQ (maj, min ) \
423
423
((__GLIBC__ << 16 ) + __GLIBC_MINOR__ >= ((maj) << 16 ) + (min))
Original file line number Diff line number Diff line change 1
1
/* This file just defines the current version number of libc. */
2
2
3
- #define RELEASE "development "
4
- #define VERSION "2.26.9000 "
3
+ #define RELEASE "stable "
4
+ #define VERSION "2.27 "
You can’t perform that action at this time.
0 commit comments