Skip to content

Commit 23158b0

Browse files
committedFeb 1, 2018
Update for 2.27 release
1 parent 363e451 commit 23158b0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed
 

‎ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
2018-02-01 Dmitry V. Levin <ldv@altlinux.org>
22

3+
* version.h (RELEASE): Set to "stable".
4+
(VERSION): Set to "2.27".
5+
* include/features.h (__GLIBC_MINOR__): Set to 2.27.
6+
37
* NEWS: Add the list of bugs fixed in 2.27.
48

59
2018-02-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>

‎include/features.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@
417417
/* Major and minor version number of the GNU C library package. Use
418418
these macros to test for features in specific releases. */
419419
#define __GLIBC__ 2
420-
#define __GLIBC_MINOR__ 26
420+
#define __GLIBC_MINOR__ 27
421421

422422
#define __GLIBC_PREREQ(maj, min) \
423423
((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))

‎version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/* This file just defines the current version number of libc. */
22

3-
#define RELEASE "development"
4-
#define VERSION "2.26.9000"
3+
#define RELEASE "stable"
4+
#define VERSION "2.27"

0 commit comments

Comments
 (0)
Please sign in to comment.