diff --git a/icu4c/source/common/common.vcxproj b/icu4c/source/common/common.vcxproj index cdcfcfb0f42..940c9f36ac5 100644 --- a/icu4c/source/common/common.vcxproj +++ b/icu4c/source/common/common.vcxproj @@ -104,7 +104,7 @@ 0x0409 - ..\..\bin\icuuc56.dll + ..\..\bin\icuuc57.dll true .\..\..\lib\icuuc.pdb true @@ -145,7 +145,7 @@ 0x0409 - ..\..\bin\icuuc56d.dll + ..\..\bin\icuuc57d.dll true true .\..\..\lib\icuucd.pdb @@ -183,7 +183,7 @@ 0x0409 - ..\..\bin64\icuuc56.dll + ..\..\bin64\icuuc57.dll true .\..\..\lib64\icuuc.pdb true @@ -222,7 +222,7 @@ 0x0409 - ..\..\bin64\icuuc56d.dll + ..\..\bin64\icuuc57d.dll true true .\..\..\lib64\icuucd.pdb diff --git a/icu4c/source/common/unicode/uvernum.h b/icu4c/source/common/unicode/uvernum.h index 6f3ae35b9d6..949da1771f4 100644 --- a/icu4c/source/common/unicode/uvernum.h +++ b/icu4c/source/common/unicode/uvernum.h @@ -1,6 +1,6 @@ /* ******************************************************************************* -* Copyright (C) 2000-2015, International Business Machines +* Copyright (C) 2000-2016, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************* * @@ -51,25 +51,25 @@ * @stable ICU 2.4 */ #define U_COPYRIGHT_STRING \ - " Copyright (C) 2015, International Business Machines Corporation and others. All Rights Reserved. " + " Copyright (C) 2016, International Business Machines Corporation and others. All Rights Reserved. " /** The current ICU major version as an integer. * This value will change in the subsequent releases of ICU * @stable ICU 2.4 */ -#define U_ICU_VERSION_MAJOR_NUM 56 +#define U_ICU_VERSION_MAJOR_NUM 57 /** The current ICU minor version as an integer. * This value will change in the subsequent releases of ICU * @stable ICU 2.6 */ -#define U_ICU_VERSION_MINOR_NUM 1 +#define U_ICU_VERSION_MINOR_NUM 0 /** The current ICU patchlevel version as an integer. * This value will change in the subsequent releases of ICU * @stable ICU 2.4 */ -#define U_ICU_VERSION_PATCHLEVEL_NUM 0 +#define U_ICU_VERSION_PATCHLEVEL_NUM 1 /** The current ICU build level version as an integer. * This value is for use by ICU clients. It defaults to 0. @@ -83,7 +83,7 @@ * This value will change in the subsequent releases of ICU * @stable ICU 2.6 */ -#define U_ICU_VERSION_SUFFIX _56 +#define U_ICU_VERSION_SUFFIX _57 /** * \def U_DEF2_ICU_ENTRY_POINT_RENAME @@ -118,19 +118,19 @@ * This value will change in the subsequent releases of ICU * @stable ICU 2.4 */ -#define U_ICU_VERSION "56.1" +#define U_ICU_VERSION "57.0.1" /** The current ICU library major/minor version as a string without dots, for library name suffixes. * This value will change in the subsequent releases of ICU * @stable ICU 2.6 */ -#define U_ICU_VERSION_SHORT "56" +#define U_ICU_VERSION_SHORT "57" #ifndef U_HIDE_INTERNAL_API /** Data version in ICU4C. * @internal ICU 4.4 Internal Use Only **/ -#define U_ICU_DATA_VERSION "56.1" +#define U_ICU_DATA_VERSION "57.0.1" #endif /* U_HIDE_INTERNAL_API */ /*=========================================================================== diff --git a/icu4c/source/data/makedata.mak b/icu4c/source/data/makedata.mak index bf14fdde6e8..46486b2ddb2 100644 --- a/icu4c/source/data/makedata.mak +++ b/icu4c/source/data/makedata.mak @@ -1,5 +1,5 @@ #********************************************************************** -#* Copyright (C) 1999-2015, International Business Machines Corporation +#* Copyright (C) 1999-2016, International Business Machines Corporation #* and others. All Rights Reserved. #********************************************************************** # nmake file for creating data files on win32 @@ -10,7 +10,7 @@ ############################################################################## # Keep the following in sync with the version - see common/unicode/uvernum.h -U_ICUDATA_NAME=icudt56 +U_ICUDATA_NAME=icudt57 ############################################################################## U_ICUDATA_ENDIAN_SUFFIX=l UNICODE_VERSION=8.0 diff --git a/icu4c/source/data/misc/icuver.txt b/icu4c/source/data/misc/icuver.txt index e15dc9dba1b..8ca5e1788ec 100644 --- a/icu4c/source/data/misc/icuver.txt +++ b/icu4c/source/data/misc/icuver.txt @@ -1,11 +1,11 @@ // *************************************************************************** // * -// * Copyright (C) 2010-2015 International Business Machines +// * Copyright (C) 2010-2016 International Business Machines // * Corporation and others. All Rights Reserved. // * // *************************************************************************** icuver:table(nofallback){ - DataVersion { "56.1.0.0" } - ICUVersion { "56.1.0.0" } + DataVersion { "57.0.1.0" } + ICUVersion { "57.0.1.0" } } diff --git a/icu4c/source/i18n/i18n.vcxproj b/icu4c/source/i18n/i18n.vcxproj index b036d95e329..99c53dc14ec 100644 --- a/icu4c/source/i18n/i18n.vcxproj +++ b/icu4c/source/i18n/i18n.vcxproj @@ -107,7 +107,7 @@ ../common;%(AdditionalIncludeDirectories) - ..\..\bin\icuin56.dll + ..\..\bin\icuin57.dll true .\..\..\lib\icuin.pdb true @@ -151,7 +151,7 @@ ../common;%(AdditionalIncludeDirectories) - ..\..\bin\icuin56d.dll + ..\..\bin\icuin57d.dll true true .\..\..\lib\icuind.pdb @@ -192,7 +192,7 @@ ../common;%(AdditionalIncludeDirectories) - ..\..\bin64\icuin56.dll + ..\..\bin64\icuin57.dll true .\..\..\lib64\icuin.pdb true @@ -234,7 +234,7 @@ ../common;%(AdditionalIncludeDirectories) - ..\..\bin64\icuin56d.dll + ..\..\bin64\icuin57d.dll true true .\..\..\lib64\icuind.pdb diff --git a/icu4c/source/io/io.vcxproj b/icu4c/source/io/io.vcxproj index 45f901c81b0..28364dd700e 100644 --- a/icu4c/source/io/io.vcxproj +++ b/icu4c/source/io/io.vcxproj @@ -107,7 +107,7 @@ ..\common;%(AdditionalIncludeDirectories) - ..\..\bin\icuio56.dll + ..\..\bin\icuio57.dll true .\..\..\lib\icuio.pdb true @@ -151,7 +151,7 @@ ..\common;%(AdditionalIncludeDirectories) - ..\..\bin\icuio56d.dll + ..\..\bin\icuio57d.dll true true .\..\..\lib\icuiod.pdb @@ -192,7 +192,7 @@ ..\common;%(AdditionalIncludeDirectories) - ..\..\bin64\icuio56.dll + ..\..\bin64\icuio57.dll true .\..\..\lib64\icuio.pdb true @@ -234,7 +234,7 @@ ..\common;%(AdditionalIncludeDirectories) - ..\..\bin64\icuio56d.dll + ..\..\bin64\icuio57d.dll true true .\..\..\lib64\icuiod.pdb diff --git a/icu4c/source/layout/layout.vcxproj b/icu4c/source/layout/layout.vcxproj index 25fbbef6597..6e2fd9d5679 100644 --- a/icu4c/source/layout/layout.vcxproj +++ b/icu4c/source/layout/layout.vcxproj @@ -110,7 +110,7 @@ ..\common;%(AdditionalIncludeDirectories) - ..\..\bin\icule56d.dll + ..\..\bin\icule57d.dll true true .\..\..\lib\iculed.pdb @@ -151,7 +151,7 @@ ..\common;%(AdditionalIncludeDirectories) - ..\..\bin\icule56.dll + ..\..\bin\icule57.dll true .\..\..\lib\icule.pdb true @@ -195,7 +195,7 @@ ..\common;%(AdditionalIncludeDirectories) - ..\..\bin64\icule56d.dll + ..\..\bin64\icule57d.dll true true .\..\..\lib64\iculed.pdb @@ -234,7 +234,7 @@ ..\common;%(AdditionalIncludeDirectories) - ..\..\bin64\icule56.dll + ..\..\bin64\icule57.dll true .\..\..\lib64\icule.pdb true diff --git a/icu4c/source/layoutex/layoutex.vcxproj b/icu4c/source/layoutex/layoutex.vcxproj index 716516bfe6c..bf947ebea27 100644 --- a/icu4c/source/layoutex/layoutex.vcxproj +++ b/icu4c/source/layoutex/layoutex.vcxproj @@ -107,7 +107,7 @@ 0x0409 - ..\..\bin\iculx56.dll + ..\..\bin\iculx57.dll true .\..\..\lib\iculx.pdb true @@ -150,7 +150,7 @@ 0x0409 - ..\..\bin\iculx56d.dll + ..\..\bin\iculx57d.dll true true .\..\..\lib\iculxd.pdb @@ -190,7 +190,7 @@ 0x0409 - ..\..\bin64\iculx56.dll + ..\..\bin64\iculx57.dll true .\..\..\lib64\iculx.pdb true @@ -231,7 +231,7 @@ 0x0409 - ..\..\bin64\iculx56d.dll + ..\..\bin64\iculx57d.dll true true .\..\..\lib64\iculxd.pdb diff --git a/icu4c/source/stubdata/stubdata.vcxproj b/icu4c/source/stubdata/stubdata.vcxproj index 1a813068c3d..ed3ea7eb2e0 100644 --- a/icu4c/source/stubdata/stubdata.vcxproj +++ b/icu4c/source/stubdata/stubdata.vcxproj @@ -113,7 +113,7 @@ echo "File with stubdata build time, used as a dependency to trigger fresh data build, since stubdata dll will overwrite the real one." > "$(ProjectDir)stubdatabuilt.txt" - ..\..\bin\icudt56.dll + ..\..\bin\icudt57.dll true true .\x86\Release\icudt.pdb @@ -160,7 +160,7 @@ echo "File with stubdata build time, used as a dependency to trigger fresh data build, since stubdata dll will overwrite the real one." > "$(ProjectDir)stubdatabuilt.txt" - ..\..\bin\icudt56.dll + ..\..\bin\icudt57.dll true .\x86\Debug/icudt.pdb true @@ -207,7 +207,7 @@ echo "File with stubdata build time, used as a dependency to trigger fresh data build, since stubdata dll will overwrite the real one." > "$(ProjectDir)stubdatabuilt.txt" - ..\..\bin64\icudt56.dll + ..\..\bin64\icudt57.dll true true .\x64\Release\icudt.pdb @@ -252,7 +252,7 @@ echo "File with stubdata build time, used as a dependency to trigger fresh data build, since stubdata dll will overwrite the real one." > "$(ProjectDir)stubdatabuilt.txt" - ..\..\bin64\icudt56.dll + ..\..\bin64\icudt57.dll true .\x64\Debug/icudt.pdb true diff --git a/icu4c/source/tools/ctestfw/ctestfw.vcxproj b/icu4c/source/tools/ctestfw/ctestfw.vcxproj index c6c01fe80d5..af4cec32de1 100644 --- a/icu4c/source/tools/ctestfw/ctestfw.vcxproj +++ b/icu4c/source/tools/ctestfw/ctestfw.vcxproj @@ -107,7 +107,7 @@ 0x0409 - ..\..\..\bin\icutest55.dll + ..\..\..\bin\icutest57.dll true .\..\..\..\lib\icutest.pdb true @@ -150,7 +150,7 @@ 0x0409 - ..\..\..\bin\icutest55d.dll + ..\..\..\bin\icutest57d.dll true true .\..\..\..\lib\icutestd.pdb @@ -190,7 +190,7 @@ 0x0409 - ..\..\..\bin64\icutest55.dll + ..\..\..\bin64\icutest57.dll true .\..\..\..\lib64\icutest.pdb true @@ -231,7 +231,7 @@ 0x0409 - ..\..\..\bin64\icutest55d.dll + ..\..\..\bin64\icutest57d.dll true true .\..\..\..\lib64\icutestd.pdb diff --git a/icu4c/source/tools/toolutil/toolutil.vcxproj b/icu4c/source/tools/toolutil/toolutil.vcxproj index b1d0d70dafb..21e3292277f 100644 --- a/icu4c/source/tools/toolutil/toolutil.vcxproj +++ b/icu4c/source/tools/toolutil/toolutil.vcxproj @@ -107,7 +107,7 @@ 0x0409 - ..\..\..\bin\icutu55.dll + ..\..\..\bin\icutu57.dll true ..\..\..\lib;%(AdditionalLibraryDirectories) .\..\..\..\lib\icutu.pdb @@ -151,7 +151,7 @@ 0x0409 - ..\..\..\bin\icutu55d.dll + ..\..\..\bin\icutu57d.dll true ..\..\..\lib;%(AdditionalLibraryDirectories) true @@ -193,7 +193,7 @@ 0x0409 - ..\..\..\bin64\icutu55.dll + ..\..\..\bin64\icutu57.dll true ..\..\..\lib64;%(AdditionalLibraryDirectories) .\..\..\..\lib64\icutu.pdb @@ -235,7 +235,7 @@ 0x0409 - ..\..\..\bin64\icutu55d.dll + ..\..\..\bin64\icutu57d.dll true ..\..\..\lib64;%(AdditionalLibraryDirectories) true