From 72c98b5d1d945666ec08bf342b0479e7fdef053a Mon Sep 17 00:00:00 2001 From: Sean Arms <67096+lesserwhirls@users.noreply.github.com> Date: Tue, 28 Apr 2020 17:25:46 -0600 Subject: [PATCH] Release 5.3.2 --- build.gradle | 5 +++-- .../public/userguide/pages/netcdfJava/UpgradeTo50.md | 12 ------------ 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/build.gradle b/build.gradle index fd1af3c188..19e94a1545 100644 --- a/build.gradle +++ b/build.gradle @@ -38,9 +38,10 @@ allprojects { // may be SNAPSHOT, alphax, betax, etc. // Note - if bumping to a new major or minor version, be sure to update the docs (see step 1 in // docs/src/private/internal/release.md for details) - version = '5.3.2-SNAPSHOT' + version = '5.3.2' // Eventually, we'll stop appending "SNAPSHOT" to our versions and just use this. - status = 'development' + //status = 'development' + status = 'release' } // Matches Maven's "project.description". diff --git a/docs/src/public/userguide/pages/netcdfJava/UpgradeTo50.md b/docs/src/public/userguide/pages/netcdfJava/UpgradeTo50.md index a38d527605..8ffdd9737a 100644 --- a/docs/src/public/userguide/pages/netcdfJava/UpgradeTo50.md +++ b/docs/src/public/userguide/pages/netcdfJava/UpgradeTo50.md @@ -25,7 +25,6 @@ As such, we no longer utilize WebStart. * [Summary of changes for v5.1.x](#netcdf-java-api-changes-51x) * [Summary of changes for v5.2.x](#netcdf-java-api-changes-52x) * [Summary of changes for v5.3.x](#netcdf-java-api-changes-53x) -* [Summary of changes for v5.4.x](#netcdf-java-api-changes-54x) ## netCDF-Java API Changes (5.0.x) @@ -287,17 +286,6 @@ Starting with v5.2.0, users can set the maximum buffer size in bytes using the J ## netCDF-Java API Changes (5.3.x) -### Opening remote files on AWS S3 - -`NetcdfFiles` and `NetcdfDatasets` can now open files stored as a single object on S3 using the AWS RESTful API with byte range-requests, similar to HTTP. -This new functionality is not available in the now deprecated `NetcdfFile` and `NetcdfDataset` open methods. -You will also need to include the `cdm-s3` artifact in your build. -This is currently not part of `netcdfAll.jar`.. -This is done through the use of `S3RandomAccessFile` and byte range-requests, so downloading the entire object may not be needed. -For more information, see the [DatasetUrl](dataset_urls.html#object-stores) documentation. - -## netCDF-Java API Changes (5.4.x) - ### Opening remote files on Object Stores that support the AWS S3 API Object Store support has been extended to interface with any AWS S3 API compatible system, and has been tested against Google Cloud Storage, Azure Blob Storage, ActiveScale Object Store, and Ceph.