00001 // © 2016 and later: Unicode, Inc. and others. 00002 // License & terms of use: http://www.unicode.org/copyright.html 00003 /* 00004 ******************************************************************************* 00005 * Copyright (C) 2000-2016, International Business Machines 00006 * Corporation and others. All Rights Reserved. 00007 ******************************************************************************* 00008 * 00009 * file name: uvernum.h 00010 * encoding: UTF-8 00011 * tab size: 8 (not used) 00012 * indentation:4 00013 * 00014 * Created by: Vladimir Weinstein 00015 * Updated by: Steven R. Loomis 00016 * 00017 */ 00018 00027 /* 00028 * IMPORTANT: When updating version, the following things need to be done: 00029 * source/common/unicode/uvernum.h - this file: update major, minor, 00030 * patchlevel, suffix, version, short version constants, namespace, 00031 * renaming macro, and copyright 00032 * 00033 * The following files need to be updated as well, which can be done 00034 * by running the UNIX makefile target 'update-windows-makefiles' in icu/source. 00035 * 00036 * 00037 * source/common/common.vcxproj - update 'Output file name' on the link tab so 00038 * that it contains the new major/minor combination 00039 * source/i18n/i18n.vcxproj - same as for the common.vcxproj 00040 * source/layoutex/layoutex.vcproj - same 00041 * source/stubdata/stubdata.vcproj - same as for the common.vcxproj 00042 * source/io/io.vcproj - same as for the common.vcxproj 00043 * source/data/makedata.mak - change U_ICUDATA_NAME so that it contains 00044 * the new major/minor combination and the Unicode version. 00045 */ 00046 00047 #ifndef UVERNUM_H 00048 #define UVERNUM_H 00049 00054 #define U_COPYRIGHT_STRING \ 00055 " Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html " 00056 00061 #define U_ICU_VERSION_MAJOR_NUM 60 00062 00067 #define U_ICU_VERSION_MINOR_NUM 1 00068 00073 #define U_ICU_VERSION_PATCHLEVEL_NUM 0 00074 00079 #ifndef U_ICU_VERSION_BUILDLEVEL_NUM 00080 #define U_ICU_VERSION_BUILDLEVEL_NUM 0 00081 #endif 00082 00087 #define U_ICU_VERSION_SUFFIX _60 00088 00105 #ifndef U_ICU_ENTRY_POINT_RENAME 00106 #ifdef U_HAVE_LIB_SUFFIX 00107 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z) x ## y ## z 00108 #define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y,z) U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z) 00109 #define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX,U_LIB_SUFFIX_C_NAME) 00110 #else 00111 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y 00112 #define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y) U_DEF_ICU_ENTRY_POINT_RENAME(x,y) 00113 #define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX) 00114 #endif 00115 #endif 00116 00122 #define U_ICU_VERSION "60.1" 00123 00128 #define U_ICU_VERSION_SHORT "60" 00129 00130 #ifndef U_HIDE_INTERNAL_API 00131 00134 #define U_ICU_DATA_VERSION "60.1" 00135 #endif /* U_HIDE_INTERNAL_API */ 00136 00137 /*=========================================================================== 00138 * ICU collation framework version information 00139 * Version info that can be obtained from a collator is affected by these 00140 * numbers in a secret and magic way. Please use collator version as whole 00141 *=========================================================================== 00142 */ 00143 00150 #define UCOL_RUNTIME_VERSION 9 00151 00159 #define UCOL_BUILDER_VERSION 9 00160 00161 #ifndef U_HIDE_DEPRECATED_API 00162 00168 #define UCOL_TAILORINGS_VERSION 1 00169 #endif /* U_HIDE_DEPRECATED_API */ 00170 00171 #endif
1.6.1