ICU 4.8.1.1
4.8.1.1
|
00001 /* 00002 ******************************************************************************* 00003 * Copyright (C) 2000-2011, International Business Machines 00004 * Corporation and others. All Rights Reserved. 00005 ******************************************************************************* 00006 * 00007 * file name: uvernum.h 00008 * encoding: US-ASCII 00009 * tab size: 8 (not used) 00010 * indentation:4 00011 * 00012 * Created by: Vladimir Weinstein 00013 * Updated by: Steven R. Loomis 00014 * 00015 * Gets included by uversion.h and other files. 00016 * 00017 * IMPORTANT: When updating version, the following things need to be done: 00018 * source/common/unicode/uvernum.h - this file: update major, minor, 00019 * patchlevel, suffix, version, short version constants, namespace, 00020 * renaming macro, and copyright 00021 * 00022 * The following files need to be updated as well, which can be done 00023 * by running the UNIX makefile target 'update-windows-makefiles' in icu/source. 00024 * 00025 * 00026 * source/common/common.vcproj - update 'Output file name' on the link tab so 00027 * that it contains the new major/minor combination 00028 * source/i18n/i18n.vcproj - same as for the common.vcproj 00029 * source/layout/layout.vcproj - same as for the common.vcproj 00030 * source/layoutex/layoutex.vcproj - same 00031 * source/stubdata/stubdata.vcproj - same as for the common.vcproj 00032 * source/io/io.vcproj - same as for the common.vcproj 00033 * source/data/makedata.mak - change U_ICUDATA_NAME so that it contains 00034 * the new major/minor combination and the Unicode version. 00035 */ 00036 00037 #ifndef UVERNUM_H 00038 #define UVERNUM_H 00039 00044 #define U_COPYRIGHT_STRING \ 00045 " Copyright (C) 2011, International Business Machines Corporation and others. All Rights Reserved. " 00046 00051 #define U_ICU_VERSION_MAJOR_NUM 4 00052 00057 #define U_ICU_VERSION_MINOR_NUM 8 00058 00063 #define U_ICU_VERSION_PATCHLEVEL_NUM 1 00064 00069 #ifndef U_ICU_VERSION_BUILDLEVEL_NUM 00070 #define U_ICU_VERSION_BUILDLEVEL_NUM 1 00071 #endif 00072 00077 #define U_ICU_VERSION_SUFFIX _48 00078 00085 #ifndef U_ICU_ENTRY_POINT_RENAME 00086 #define U_ICU_ENTRY_POINT_RENAME(x) x ## _48 00087 #endif 00088 00094 #define U_ICU_VERSION "4.8.1.1" 00095 00100 #define U_ICU_VERSION_SHORT "48" 00101 00105 #define U_ICU_DATA_VERSION "4.8.1" 00106 00107 /*=========================================================================== 00108 * ICU collation framework version information 00109 * Version info that can be obtained from a collator is affected by these 00110 * numbers in a secret and magic way. Please use collator version as whole 00111 *=========================================================================== 00112 */ 00113 00120 #define UCOL_RUNTIME_VERSION 7 00121 00129 #define UCOL_BUILDER_VERSION 8 00130 00136 #define UCOL_TAILORINGS_VERSION 1 00137 00138 #endif