This is an automated email from the ASF dual-hosted git repository.
leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-website.git
The following commit(s) were added to refs/heads/master by this push:
new 20ec6fb3 Minor updates.
20ec6fb3 is described below
commit 20ec6fb3fe0a4b133d9c5125dbc3e4829e9c93f4
Author: Lee Rhodes <[email protected]>
AuthorDate: Mon Jul 29 16:10:28 2024 -0700
Minor updates.
---
docs/Community/ReleaseProcessForJavaComponents.md | 4 +---
pom.xml | 2 +-
src/main/java/org/apache/datasketches/Files.java | 2 +-
3 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/docs/Community/ReleaseProcessForJavaComponents.md
b/docs/Community/ReleaseProcessForJavaComponents.md
index 5250a0f7..7f53d08a 100644
--- a/docs/Community/ReleaseProcessForJavaComponents.md
+++ b/docs/Community/ReleaseProcessForJavaComponents.md
@@ -69,7 +69,7 @@ Also specifies line separator characters for text files.
### Run Maven Tests
* `mvn apache-rat:check`
* `mvn clean test`
-* `mvn clean test -P check-cpp-files` (if relevant)
+* `mvn clean test -P check-cpp-files` (only for ds-java)
* `mvn clean test -P check-cpp-historical-files` (only for ds-java)
* `mvn clean javadoc:javadoc`
* `mvn clean install -DskipTests=true`
@@ -131,8 +131,6 @@ Also specifies line separator characters for text files.
* Edit master pom.xml to A'.B'.0-SNAPSHOT where A' or B' will be incremented
by 1.
* Commit and Push this change to origin/master with the comment "Release
Process: Change pom version to A'.B'.0-SNAPSHOT."
* This may require changing to a temparary branch and creating a PR to be
approved if master branch is restricted.
-* Create a tag A'.B'.0-SNAPSHOT on master at the HEAD.
-* Push the tag to origin: `git push origin --tags`
* Return to release branch A.B.X (or A'.0.X)
* You may minimize your IDE, pointing at the release branch.
diff --git a/pom.xml b/pom.xml
index e97deed4..f13d337e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -85,7 +85,7 @@ under the License.
<properties>
<!-- UNIQUE FOR THIS JAVA COMPONENT -->
- <org-json.version>20231013</org-json.version>
+ <org-json.version>20230227</org-json.version> <!-- 20231013 -->
<!-- END:UNIQUE FOR THIS JAVA COMPONENT -->
<!-- Test -->
diff --git a/src/main/java/org/apache/datasketches/Files.java
b/src/main/java/org/apache/datasketches/Files.java
index 91db7834..376ab36d 100644
--- a/src/main/java/org/apache/datasketches/Files.java
+++ b/src/main/java/org/apache/datasketches/Files.java
@@ -318,7 +318,7 @@ public final class Files {
* @param numBytes The requested number of bytes to read.
* @param out The target array for the bytes.
* @return the actual number of bytes read.
- * @throws BufferUnderflowException if numBytes is greater than bytes
+ * @throws java.nio.BufferUnderflowException if numBytes is greater than
bytes
* available in the buffer.
*/
public static int readByteBuffer(final ByteBuffer bb, final int numBytes,
final byte[] out) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]