ICU-6416 Move ICU4J version to 4.1.3

X-SVN-Rev: 25304
This commit is contained in:
Yoshito Umaoka 2009-01-23 06:07:15 +00:00
parent 2a3b48cf1b
commit 7387ddc575
4 changed files with 13 additions and 13 deletions

View file

@ -11,13 +11,13 @@ icu4j.spec.version.string=4.1
# impl version will be updated for maintenance releases.
# It must be <icu4j.spec.version.string>[.<maint-version>]
icu4j.impl.version.string=4.1.2
icu4j.impl.version.string=4.1.3
# data version number won't be changed in a feature stream
icu4j.data.version.number=41
# these version numbers are used by API change report
icu4j.version.number=412
icu4j.version.number=413
icu4j.previous.version.number=401
current.year=2009
@ -26,5 +26,5 @@ copyright=Copyright (c) 2000-2009, International Business Machines Corporation a
corp=IBM Corporation
default.target.rt.version=JAVASE6
icu4j.plugin.impl.version.string=4.1.2
icu4j.plugin.impl.version.string=4.1.3
copyright.eclipse=Licensed Materials - Property of IBM \n (C) Copyright IBM Corp. 2000, 2009. All Rights Reserved. \n IBM is a registered trademark of IBM Corp.

View file

@ -1,6 +1,6 @@
/*
*******************************************************************************
* Copyright (C) 2006-2008, Google, International Business Machines Corporation *
* Copyright (C) 2006-2009, Google, International Business Machines Corporation *
* and others. All Rights Reserved. *
*******************************************************************************
*/
@ -394,7 +394,7 @@ public class DateTimeGeneratorTest extends TestFmwk {
DateOrder order2 = getOrdering(style2, uLocale);
if (!order1.hasSameOrderAs(order2)) {
if (order1.monthLength == order2.monthLength) { // error if have same month length, different ordering
if (skipIfBeforeICU(4,1,2)) {
if (skipIfBeforeICU(4,1,3)) {
logln(showOrderComparison(uLocale, style1, style2, order1, order2));
} else {
errln(showOrderComparison(uLocale, style1, style2, order1, order2));

View file

@ -1,6 +1,6 @@
/**
*******************************************************************************
* Copyright (C) 2000-2008, International Business Machines Corporation and *
* Copyright (C) 2000-2009, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
@ -206,7 +206,7 @@ public class RoundTripTest extends TestFmwk {
String getGreekSet() {
// Time bomb
if (skipIfBeforeICU(4,1,2)) {
if (skipIfBeforeICU(4,2,0)) {
// We temporarily filter against Unicode 4.1, but we only do this
// before version 3.5.
logln("TestGreek needs to be updated to remove delete the section marked [:Age=4.0:] filter");
@ -268,7 +268,7 @@ public class RoundTripTest extends TestFmwk {
public void TestHebrew() throws IOException {
// Time bomb
if (skipIfBeforeICU(4,1,2)) {
if (skipIfBeforeICU(4,2,0)) {
// We temporarily filter against Unicode 4.1, but we only do this
// before version 3.5.
logln("TestHebrew needs to be updated to remove delete the section marked [:Age=4.0:] filter");
@ -283,7 +283,7 @@ public class RoundTripTest extends TestFmwk {
public void TestThai() throws IOException {
long start = System.currentTimeMillis();
if(skipIfBeforeICU(4,1,2)){
if(skipIfBeforeICU(4,2,0)){
new Test("Latin-Thai")
.test("[a-zA-Z\u0142\u1ECD\u00E6\u0131\u0268\u02CC]",
"[\u0E01-\u0E3A\u0E40-\u0E5B]",
@ -365,7 +365,7 @@ public class RoundTripTest extends TestFmwk {
public void TestDevanagariLatin() throws IOException {
long start = System.currentTimeMillis();
if (skipIfBeforeICU(4,1,2)) {
if (skipIfBeforeICU(4,2,0)) {
logln("Warning: TestDevanagariLatin needs to be updated to remove delete the section marked [:Age=4.1:] filter");
} else {
// We temporarily filter against Unicode 4.1, but we only do this
@ -738,7 +738,7 @@ public class RoundTripTest extends TestFmwk {
logln("Testing only 5 of "+ interIndicArray.length+" Skipping rest (use -e for exhaustive)");
num = 5;
}
if (skipIfBeforeICU(4,1,2)) {
if (skipIfBeforeICU(4,2,0)) {
logln("Warning: TestInterIndic needs to be updated to remove delete the section marked [:Age=4.1:] filter");
} else {
// We temporarily filter against Unicode 4.1, but we only do this

View file

@ -1,6 +1,6 @@
/*
*******************************************************************************
* Copyright (C) 1996-2008, International Business Machines Corporation and *
* Copyright (C) 1996-2009, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
@ -460,7 +460,7 @@ public final class VersionInfo implements Comparable
UNICODE_4_0_1 = getInstance(4, 0, 1, 0);
UNICODE_4_1 = getInstance(4, 1, 0, 0);
UNICODE_5_0 = getInstance(4, 1, 0, 0);
ICU_VERSION = getInstance(4, 1, 2, 0);
ICU_VERSION = getInstance(4, 1, 3, 0);
UCOL_RUNTIME_VERSION = getInstance(6);
UCOL_BUILDER_VERSION = getInstance(7);
UCOL_TAILORINGS_VERSION = getInstance(1);