ICU-8429 Update ICU4J version to 4.8 / 4.8RC except data version.

X-SVN-Rev: 30047
This commit is contained in:
Yoshito Umaoka 2011-05-06 18:39:47 +00:00
parent 10b9607679
commit 63bb1c6e6f
6 changed files with 17 additions and 9 deletions

View file

@ -1,8 +1,8 @@
#*******************************************************************************
#* Copyright (C) 2009-2010, International Business Machines Corporation and *
#* Copyright (C) 2009-2011, International Business Machines Corporation and *
#* others. All Rights Reserved. *
#*******************************************************************************
api.report.version = 471
api.report.version = 48
api.report.prev.version = 46
release.file.ver = 4_7_1
release.file.ver = 4_8_rc1

View file

@ -488,7 +488,7 @@ public final class VersionInfo implements Comparable<VersionInfo>
UNICODE_5_2 = getInstance(5, 2, 0, 0);
UNICODE_6_0 = getInstance(6, 0, 0, 0);
ICU_VERSION = getInstance(4, 7, 1, 0);
ICU_VERSION = getInstance(4, 8, 0, 0);
ICU_DATA_VERSION = getInstance(4, 7, 1, 0);
UNICODE_VERSION = UNICODE_6_0;

View file

@ -4,8 +4,8 @@
#*******************************************************************************
# Version numbers, etc.
icu4j.spec.version = 4.7
icu4j.impl.version = 4.7.1
icu4j.spec.version = 4.8
icu4j.impl.version = 4.8
icu4j.data.version = 47
current.year = 2011
default.exec.env = J2SE-1.5

View file

@ -1790,7 +1790,7 @@ public class SearchTest extends TestFmwk {
}
public void TestSupplementary() {
if (skipIfBeforeICU(4, 7, 1)) {
if (skipIfBeforeICU(4,9,0)) { // ticket#8080
return;
}
int count = 0;
@ -1803,7 +1803,7 @@ public class SearchTest extends TestFmwk {
}
public void TestSupplementaryCanonical() {
if (skipIfBeforeICU(4, 7, 1)) {
if (skipIfBeforeICU(4,9,0)) { // ticket#8080
return;
}
int count = 0;

View file

@ -525,7 +525,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,7,1)) { // ticket#6806
if (skipIfBeforeICU(4,9,0)) { // ticket#6806
logln(showOrderComparison(uLocale, style1, style2, order1, order2));
} else {
errln(showOrderComparison(uLocale, style1, style2, order1, order2));

View file

@ -77,6 +77,14 @@
<role>PMC Member</role>
</roles>
</developer>
<developer>
<id>pedberg</id>
<name>Peter Edberg</name>
<organization>Apple</organization>
<roles>
<role>PMC Member</role>
</roles>
</developer>
<developer>
<id>yoshito</id>
<name>Yoshito Umaoka</name>