ICU-20919 Merge maint/maint-66 into master
This commit is contained in:
commit
677fbe4de6
@ -23,8 +23,8 @@
|
||||
milestone - if the release note is a milestone release
|
||||
-->
|
||||
|
||||
<!-- <body> -->
|
||||
<body class="rc">
|
||||
<body>
|
||||
<!-- <body class="rc"> -->
|
||||
<p class="only-draft"><b>Note:</b> This is a draft readme.</p>
|
||||
|
||||
<h1>
|
||||
@ -47,7 +47,7 @@
|
||||
<p class="note only-rc">This is a release candidate version of ICU4C.
|
||||
It is not recommended for production use.</p>
|
||||
|
||||
<p>Last updated: 2020-Feb-12<br/>
|
||||
<p>Last updated: 2020-Mar-02<br/>
|
||||
Copyright © 2016 and later: Unicode, Inc. and others. License & terms of use:
|
||||
<a href="http://www.unicode.org/copyright.html">http://www.unicode.org/copyright.html</a><br/>
|
||||
Copyright © 1997-2016 International Business Machines Corporation and others.
|
||||
|
@ -234,7 +234,7 @@ ucnv_safeClone(const UConverter* cnv, void *stackBuffer, int32_t *pBufferSize, U
|
||||
ptrdiff_t pointerAdjustment = aligned_p - p;
|
||||
if (bufferSizeNeeded + pointerAdjustment <= stackBufferSize) {
|
||||
stackBuffer = reinterpret_cast<void *>(aligned_p);
|
||||
stackBufferSize -= pointerAdjustment;
|
||||
stackBufferSize -= static_cast<int32_t>(pointerAdjustment);
|
||||
} else {
|
||||
/* prevent using the stack buffer but keep the size > 0 so that we do not just preflight */
|
||||
stackBufferSize = 1;
|
||||
|
@ -421,9 +421,9 @@ writeCCode(
|
||||
filename,
|
||||
destdir,
|
||||
buffer,
|
||||
sizeof(buffer),
|
||||
static_cast<int32_t>(sizeof(buffer)),
|
||||
entry + uprv_strlen(entry),
|
||||
sizeof(entry) - uprv_strlen(entry),
|
||||
static_cast<int32_t>(sizeof(entry) - uprv_strlen(entry)),
|
||||
".c",
|
||||
optFilename);
|
||||
|
||||
@ -682,7 +682,7 @@ getOutFilename(
|
||||
outFilenameBuilder.append(destdir, status);
|
||||
outFilenameBuilder.ensureEndsWithFileSeparator(status);
|
||||
} else {
|
||||
outFilenameBuilder.append(inFilename, basename - inFilename, status);
|
||||
outFilenameBuilder.append(inFilename, static_cast<int32_t>(basename - inFilename), status);
|
||||
}
|
||||
inFilename=basename;
|
||||
|
||||
|
@ -2,31 +2,31 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<!-- © 2019 and later: Unicode, Inc. and others. -->
|
||||
<!-- © 2020 and later: Unicode, Inc. and others. -->
|
||||
<!-- License & terms of use: http://www.unicode.org/copyright.html#License -->
|
||||
<title>ICU4J API Comparison: ICU4J 65.1 with ICU4J 66.0.1</title>
|
||||
<title>ICU4J API Comparison: ICU4J 65.1 with ICU4J 66.1</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>ICU4J API Comparison: ICU4J 65.1 with ICU4J 66.0.1</h1>
|
||||
<h1>ICU4J API Comparison: ICU4J 65.1 with ICU4J 66.1</h1>
|
||||
|
||||
<hr/>
|
||||
<h2>Removed from ICU4J 65.1</h2>
|
||||
<p>(no API removed)</p>
|
||||
|
||||
<hr/>
|
||||
<h2>Deprecated or Obsoleted in ICU4J 66.0.1</h2>
|
||||
<h2>Deprecated or Obsoleted in ICU4J 66.1</h2>
|
||||
<p>(no API obsoleted)</p>
|
||||
|
||||
<hr/>
|
||||
<h2>Changed in ICU4J 66.0.1 (old, new)</h2>
|
||||
<h2>Changed in ICU4J 66.1 (old, new)</h2>
|
||||
<p>(no API changed)</p>
|
||||
|
||||
<hr/>
|
||||
<h2>Promoted to stable in ICU4J 66.0.1</h2>
|
||||
<h2>Promoted to stable in ICU4J 66.1</h2>
|
||||
<p>(no API promoted to stable)</p>
|
||||
|
||||
<hr/>
|
||||
<h2>Added in ICU4J 66.0.1</h2>
|
||||
<h2>Added in ICU4J 66.1</h2>
|
||||
|
||||
<h3>Package com.ibm.icu.lang</h3>
|
||||
<ul>
|
||||
@ -71,6 +71,6 @@ VersionInfo
|
||||
</ul>
|
||||
|
||||
<hr/>
|
||||
<p><i><font size="-1">Contents generated by ReportAPI tool on Tue Dec 03 17:17:51 EST 2019<br/>© 2019 and later: Unicode, Inc. and others. License & terms of use: <a href="http://www.unicode.org/copyright.html#License">http://www.unicode.org/copyright.html#License</a></font></i></p>
|
||||
<p><i><font size="-1">Contents generated by ReportAPI tool on Mon Feb 24 21:44:48 EST 2020<br/>© 2020 and later: Unicode, Inc. and others. License & terms of use: <a href="http://www.unicode.org/copyright.html#License">http://www.unicode.org/copyright.html#License</a></font></i></p>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -6,7 +6,7 @@
|
||||
#*******************************************************************************
|
||||
api.report.version = 66
|
||||
api.report.prev.version = 65
|
||||
release.file.ver = 66rc
|
||||
api.doc.version = 66 Release Candidate
|
||||
maven.pom.ver = 66.1-SNAPSHOT
|
||||
release.file.ver = 66_1
|
||||
api.doc.version = 66.1
|
||||
maven.pom.ver = 66.1
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4f80cd388edcf9e4fd9b337d182910a93c3d9feea19391d2189832f373a567f3
|
||||
size 1114
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9de66628521edc985e7f2b3f2c150e305dd71a9bebcdc23f3442ab376cb632ad
|
||||
size 3177
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2bfa6e2f916fc828fd939286e13c5d2736a73b6cb98906592c37b343ee32546c
|
||||
size 20899
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:016fa24b518b8bb5bf9224b238a336f4567df9aace3dc8f9310f65ead752b1f6
|
||||
size 11741
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ae5e9ab8e2df89635c4e3f36084c6a8ea7339587e8ca0b4b27dbfd3067a264e2
|
||||
size 21332
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:70dae8d2ef1821146420cff67e5c3866e4147eec4fdb59d59788bf85f725ede9
|
||||
size 1134
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d533a36cc0d76933c046e95d6f6621b7136539fa2cdcb668d89de6c224ffe95a
|
||||
size 3177
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:17afd45aab575351b10f0d7b445deaa7f6bac97d380d6d0e01df2dfd61500be4
|
||||
size 91840
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:93a9f6baba18a863415072255297d77928bb5ca35c69f7e9d1391205e54e62af
|
||||
size 39168
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7b8f8aedb933657f73dd73a49b2f4cc6bdbe5af60425fa138a7a2b8c8e2ab9ad
|
||||
size 46875
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e98bafef6f92abdf5906efac20106b74e7002ef2f985af90a910c027d3285a1a
|
||||
size 31524
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aacd027f4e48e4105a08016840640678fe5b0bbaefda513e13e37d3917baae50
|
||||
size 10974
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eb9a9e35dd78c1295ba4914fb0cebf578f59c8360300530d50813ba15d262279
|
||||
size 11288
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e6a985e4a10117f442bba5a37392225ee36ec4cb02ad750561c15c9a3b5a2734
|
||||
size 7259
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4fde081cf28ffd69df197f9b110155d1daab4bcf686cd6ea1604814ca4a1c956
|
||||
size 3246
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c4158486c993fd2af97cebe59366262978be8cff8c67dc026667477235a8238c
|
||||
size 3699
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5f4e4cf79944d20920b1c9278f3b6692586f52dd6ffefe36f514e0d137457b12
|
||||
size 90751
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8a128c4935e8cf099bc5bb4889ef064df6f70c0ab1f1a99698a0a945114e02d1
|
||||
size 7712
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4cda3d7cfafe054fadb7168027ab1340e39752705606c6e950c7614440ecaf55
|
||||
size 2672
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d375b82c172b54df34bc9a34e11021aaa632cdeabf65d688cffe582fdbf8860
|
||||
size 4090
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b33b7db9e2b236b08fec3c6b143013b58bd86b76412fc581d93922672d022266
|
||||
size 3152
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c85007184bbe4c3900bc2ace639f81cb1c9eccf3231aadae95224598acd337b8
|
||||
size 3328
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:964903236d5c4d294608f50fd2620593d6fd44a7c754a0477145954542bde077
|
||||
size 3538
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7c85e43ae183896910a16e9cf30fe43d1979f41edb411c28fc123bd94810dd60
|
||||
size 2621
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a393395853dc448d3fdeedbc84f514b0da492028e9ef5774a785ba706426633b
|
||||
size 4099
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e0d992fd31bbf1799d5e79c8cfe2d9ed12c7166e1c75647216bd71a006fb7ca0
|
||||
size 3647
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6d730737a740900b3daea5296c2168d0f6d0d2704edceb24c040dec7279cdab6
|
||||
size 1674
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:24e34d57f74769611c2ed746c9c809f53793c0133c79c9e4e69f2a531f038e45
|
||||
size 1579
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1a0912fd8fdc5e51b3b6c2597f3c1453f63fe980d2b46fd533e6455ca591a107
|
||||
size 1612
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c5c0f622bb099bd386112a41476f7222a13cf7f326183d6c8bf418de78b06b1f
|
||||
size 1184
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3726856c09be8995c87e289eea63f5320230c5f78f2923a18a846ad2cd856edc
|
||||
size 2511
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:607ee068db504f0c0034daabbdf51d534129bc65bb10d2d98461acd3da640857
|
||||
size 3876
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:25531d0503ef12acd5b4d60268fa7cae84f06231d0315867eb637df7be2522be
|
||||
size 2750
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dad53ea259fd7ec2ecc00c0f868b11275742f041c450c00014982c484e0ac024
|
||||
size 3664
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:227687eeff821f0c4cfe3eb44447ea9b8563bd565941881dedfb6991d32aebfc
|
||||
size 2821
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:71914581933b62c6041a6dfec711dee75e801bde7d5f6b0344478f1031dafb67
|
||||
size 3242
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e1bdb43575986f04879436c7032ff92e506c3ae070539a8781cb611dd1f10a9e
|
||||
size 1114
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7602f49fcb8784ab074666e1241985d46f56d0218b1bfd700d235e6870e5d023
|
||||
size 3177
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fe1706b855eaadddbcee116e20c512f1a0f2185aebfa86da3347271e332f1bbf
|
||||
size 20943
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:58febb40aa10387287550f83dca0e85fdba396af1bfd557a5a8316af565501d8
|
||||
size 11741
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ded87a3e585807efdd7bf104ca334070011db65c35c686f72a542c18e6c95512
|
||||
size 21376
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:25fd3cb3dea42968ae2683846c40ab00f32be405fb2fb772e83673e9190b4da9
|
||||
size 1134
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:26660775ea9b2b549fcca54d2ae5965cbd5ee0158725a1c066c57344698e711a
|
||||
size 187
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0eaf13dcc61083eb10f035f39bbd9b1fc561ce323da13d78f46faa16135a4dbc
|
||||
size 1149
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:75fb6f4e755f87d2b276b0909c183f11c111f3f78a08c9586bc7521da47be8b7
|
||||
size 3177
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e1f05c04e07f85e7c51c13e94da2b9954ba1a70098e7101273683f108cb5cb96
|
||||
size 92019
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eb0aa84cc1621688d891fd27c8bbbabf33515fab51bf659843c3c112d17b58e8
|
||||
size 39347
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f10d065d97b569540b84b97f24b61885e688596b05455b77d4ff806e40ad8564
|
||||
size 47141
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:00691c179fe1d4f58c2ead75f30bbd3706a128d387636c60d95869ec4d10b96d
|
||||
size 31790
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6c3f1d37c8e014d9a0ba20e3aa48c55db44c6e1c27d3d569d3c7e1132e3a452f
|
||||
size 303
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:068437b6565a5d6f295541617043b4635428a71db5775e3409ed0516a237fd4a
|
||||
size 12289
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e65efd63cc41a73f13206448e1ac1ac8e43ef5bb6ba51d8b7271f7387835c8c2
|
||||
size 11289
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3396a54452adc2312584e0a1dac1538a1a1e67bb3e03befbc71dfee595daba76
|
||||
size 7260
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cd3dd0cb11b845b18f1bf34af393b81e17ee63647760534a8cee7087d06aedeb
|
||||
size 3247
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bd07f1c2e1b6082bf39c0205e31c8f6a33fc7afeb06f871c75943f62f732486b
|
||||
size 3757
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c29d7001cb68f90246bfd3d974e23aabb8bcaace3959401151c4d3a0a2d8aa76
|
||||
size 246
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8b305d4c1a1b2f34b124e20a25a2d0b7d20e4e4d497d75c6015797f72c8da89d
|
||||
size 91017
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2e0fbedd9c78abe5e7a05a493398eafee924ad414457bab66362131c1d15a481
|
||||
size 7712
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a1bb3fede1166585805db73440cd6d26f17a9a64710e1d949191d144f8182cfd
|
||||
size 2672
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cc3c769ebf02bcb97a39bd5621385ca3e6027f957928ebfaa0cec9ecbae3bf44
|
||||
size 4090
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2c254a8773345a9ecb984d19627f3f2558571f72ce90aaf0cc7dd3364df3718
|
||||
size 3242
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1245d648cd55d3eef2ba58b92bace01d555b8d13a9a55a1e4ec114ddd1990908
|
||||
size 3328
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9e0aaff1d72a5ff94c13daebbe57b2c1184c5ee6230a40ec384ab8cb8ab7772d
|
||||
size 3610
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:57076e58692efddbfeeebf861a0ffca157f8f46e0cc7b15295a19bf83314ad73
|
||||
size 2621
|
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa40d6c4d0370bc9768b1ff8610477722e6f350b07bf6c6a0bcb6787a7b67c63
|
||||
size 4099
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user