ICU 62.1 62.1
uvernum.h
Go to the documentation of this file.
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3/*
4*******************************************************************************
5* Copyright (C) 2000-2016, International Business Machines
6* Corporation and others. All Rights Reserved.
7*******************************************************************************
8*
9* file name: uvernum.h
10* encoding: UTF-8
11* tab size: 8 (not used)
12* indentation:4
13*
14* Created by: Vladimir Weinstein
15* Updated by: Steven R. Loomis
16*
17*/
18
27 /*
28 * IMPORTANT: When updating version, the following things need to be done:
29 * source/common/unicode/uvernum.h - this file: update major, minor,
30 * patchlevel, suffix, version, short version constants, namespace,
31 * renaming macro, and copyright
32 *
33 * The following files need to be updated as well, which can be done
34 * by running the UNIX makefile target 'update-windows-makefiles' in icu/source.
35 *
36 *
37 * source/common/common.vcxproj - update 'Output file name' on the link tab so
38 * that it contains the new major/minor combination
39 * source/i18n/i18n.vcxproj - same as for the common.vcxproj
40 * source/layoutex/layoutex.vcproj - same
41 * source/stubdata/stubdata.vcproj - same as for the common.vcxproj
42 * source/io/io.vcproj - same as for the common.vcxproj
43 * source/data/makedata.mak - change U_ICUDATA_NAME so that it contains
44 * the new major/minor combination and the Unicode version.
45 */
46
47#ifndef UVERNUM_H
48#define UVERNUM_H
49
54#define U_COPYRIGHT_STRING \
55 " Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html "
56
61#define U_ICU_VERSION_MAJOR_NUM 62
62
67#define U_ICU_VERSION_MINOR_NUM 1
68
73#define U_ICU_VERSION_PATCHLEVEL_NUM 0
74
79#ifndef U_ICU_VERSION_BUILDLEVEL_NUM
80#define U_ICU_VERSION_BUILDLEVEL_NUM 0
81#endif
82
87#define U_ICU_VERSION_SUFFIX _62
88
105#ifndef U_ICU_ENTRY_POINT_RENAME
106#ifdef U_HAVE_LIB_SUFFIX
107#define U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z) x ## y ## z
108#define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y,z) U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z)
109#define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX,U_LIB_SUFFIX_C_NAME)
110#else
111#define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
112#define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y) U_DEF_ICU_ENTRY_POINT_RENAME(x,y)
113#define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
114#endif
115#endif
116
122#define U_ICU_VERSION "62.1"
123
135#define U_ICU_VERSION_SHORT "62"
136
137#ifndef U_HIDE_INTERNAL_API
141#define U_ICU_DATA_VERSION "62.1"
142#endif /* U_HIDE_INTERNAL_API */
143
144/*===========================================================================
145 * ICU collation framework version information
146 * Version info that can be obtained from a collator is affected by these
147 * numbers in a secret and magic way. Please use collator version as whole
148 *===========================================================================
149 */
150
157#define UCOL_RUNTIME_VERSION 9
158
166#define UCOL_BUILDER_VERSION 9
167
168#ifndef U_HIDE_DEPRECATED_API
175#define UCOL_TAILORINGS_VERSION 1
176#endif /* U_HIDE_DEPRECATED_API */
177
178#endif