ICU-7019 Update version to 4.2.1

X-SVN-Rev: 26168
This commit is contained in:
Yoshito Umaoka 2009-06-25 05:53:57 +00:00
parent 48cf844730
commit 16896d1a34
5 changed files with 14 additions and 14 deletions

View file

@ -11,13 +11,13 @@ icu4j.spec.version.string=4.2
# impl version will be updated for maintenance releases.
# It must be <icu4j.spec.version.string>[.<maint-version>]
icu4j.impl.version.string=4.2
icu4j.impl.version.string=4.2.1
# data version number won't be changed in a feature stream
icu4j.data.version.number=42
# these version numbers are used by API change report
icu4j.version.number=42
icu4j.version.number=421
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.2.0
icu4j.plugin.impl.version.string=4.2.1
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

@ -214,7 +214,7 @@ public class TestConversion extends ModuleTest {
}
} catch (Exception e) {
if (skipIfBeforeICU(4,2,0)) { // TIME BOMB
if (skipIfBeforeICU(4,3,0)) { // TIME BOMB
logln("Skipping test:(" + cc.charset + ") due to ICU Charset not supported at this time");
} else {
errln(cc.charset + " was not found");
@ -496,7 +496,7 @@ public class TestConversion extends ModuleTest {
} catch (Exception e) {
// TODO implement loading of test data.
if (skipIfBeforeICU(4,2,0)) {
if (skipIfBeforeICU(4,3,0)) {
logln("Skipping test:(" + cc.charset + ") due to ICU Charset not supported at this time");
} else {
errln(cc.charset + " was not found");
@ -1096,7 +1096,7 @@ public class TestConversion extends ModuleTest {
// test to see if the conversion matches actual results
if (output.limit() != expected.length()) {
if (skipIfBeforeICU(4,2,0)) { // TIME BOMB
if (skipIfBeforeICU(4,3,0)) { // TIME BOMB
logln("Skipping test:(" + cc.charset + ") due to time bomb");
} else {
errln("Test failed: output length does not match expected for charset: "+cc.charset+ " [" + cc.caseNr + "]");
@ -1120,7 +1120,7 @@ public class TestConversion extends ModuleTest {
logln("Expected: " + printchars(CharBuffer.wrap(expected), expected.length()));
logln("Passed");
}
else if (skipIfBeforeICU(4,2,0)) {
else if (skipIfBeforeICU(4,3,0)) {
// TIME BOMB
} else {
errln("[" + cc.caseNr + "]:" + cc.charset);

View file

@ -413,7 +413,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,2,0)) {
if (skipIfBeforeICU(4,3,0)) {
logln(showOrderComparison(uLocale, style1, style2, order1, order2));
} else {
errln(showOrderComparison(uLocale, style1, style2, order1, order2));

View file

@ -322,7 +322,7 @@ public class RoundTripTest extends TestFmwk {
String getGreekSet() {
// Time bomb
if (skipIfBeforeICU(4,2,0)) {
if (skipIfBeforeICU(4,3,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");
@ -384,7 +384,7 @@ public class RoundTripTest extends TestFmwk {
public void TestHebrew() throws IOException {
// Time bomb
if (skipIfBeforeICU(4,2,0)) {
if (skipIfBeforeICU(4,3,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");
@ -399,7 +399,7 @@ public class RoundTripTest extends TestFmwk {
public void TestThai() throws IOException {
long start = System.currentTimeMillis();
if(skipIfBeforeICU(4,2,0)){
if(skipIfBeforeICU(4,3,0)){
new Test("Latin-Thai")
.test("[a-zA-Z\u0142\u1ECD\u00E6\u0131\u0268\u02CC]",
"[\u0E01-\u0E3A\u0E40-\u0E5B]",
@ -481,7 +481,7 @@ public class RoundTripTest extends TestFmwk {
public void TestDevanagariLatin() throws IOException {
long start = System.currentTimeMillis();
if (skipIfBeforeICU(4,2,0)) {
if (skipIfBeforeICU(4,3,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
@ -854,7 +854,7 @@ public class RoundTripTest extends TestFmwk {
logln("Testing only 5 of "+ interIndicArray.length+" Skipping rest (use -e for exhaustive)");
num = 5;
}
if (skipIfBeforeICU(4,2,0)) {
if (skipIfBeforeICU(4,3,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

@ -468,7 +468,7 @@ public final class VersionInfo implements Comparable
UNICODE_4_1 = getInstance(4, 1, 0, 0);
UNICODE_5_0 = getInstance(5, 0, 0, 0);
UNICODE_5_1 = getInstance(5, 1, 0, 0);
ICU_VERSION = getInstance(4, 2, 0, 0);
ICU_VERSION = getInstance(4, 2, 1, 0);
UCOL_RUNTIME_VERSION = getInstance(6);
UCOL_BUILDER_VERSION = getInstance(7);
UCOL_TAILORINGS_VERSION = getInstance(1);