File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22theme : unidata-jekyll-theme
33
44# this will appear in an HTML meta tag, sidebar, and perhaps elsewhere
5- docset_version : " 5.10 "
5+ docset_version : " 5.11 "
66
77# this appears on the top navigation bar next to the home button
88topnav_title : netCDF-Java
Original file line number Diff line number Diff line change 11---
22title : Upgrading to netCDF-Java version 5.x
3- last_updated : 2025-10-30
3+ last_updated : 2025-06-24
44sidebar : netcdfJavaTutorial_sidebar
55toc : false
66permalink : upgrade.html
@@ -12,6 +12,7 @@ permalink: upgrade.html
1212* Java {{ site.java_version_build }} is required to build the library.
1313
1414## Quick Navigation
15+ * [ Summary of changes for v5.11.x] ( #netcdf-java-changes-511x )
1516* [ Summary of changes for v5.10.x] ( #netcdf-java-changes-510x )
1617* [ Summary of changes for v5.9.x] ( #netcdf-java-api-changes-59x )
1718* [ Summary of changes for v5.8.x] ( #netcdf-java-api-changes-58x )
@@ -24,6 +25,11 @@ permalink: upgrade.html
2425* [ Summary of changes for v5.1.x] ( #netcdf-java-api-changes-51x )
2526* [ Summary of changes for v5.0.x] ( #netcdf-java-api-changes-50x )
2627
28+ ## netCDF-Java Changes (5.11.x)
29+
30+ Point release notes:
31+ * [ 5.11.0] ( https://github.com/Unidata/netcdf-java/releases/tag/v5.11.0 ) {: target ="_ blank"} (_ yyyy-mm-dd, unreleased_ )
32+
2733## netCDF-Java Changes (5.10.x)
2834
2935Point release notes:
Original file line number Diff line number Diff line change 11[versions ]
2- netcdf-java = " 5.10 .0-SNAPSHOT"
2+ netcdf-java = " 5.11 .0-SNAPSHOT"
33
44unidata-doc-theme = " 0.1.1"
55
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ publishing {
7676 repositories.clear()
7777 repositories {
7878 maven {
79- name = " releases "
79+ name = " NativeReleases "
8080 url = uri(" https://artifacts.unidata.ucar.edu/repository/unidata-releases/" )
8181 credentials {
8282 username = extra.properties[" artifacts.username" ] as ? String
@@ -97,4 +97,12 @@ publishing {
9797
9898tasks
9999 .matching { it.group == " publishing" }
100- .forEach { it.enabled = System .getProperty(" unidata.native.publish" )?.toBoolean() ? : false }
100+ .forEach {
101+ // always disable publish task from ncj-artifact-publishing-conventions plugin
102+ if (it.name.contains(" ToReleasesRepository" )) {
103+ it.enabled = false
104+ } else {
105+ // for everything else, decide what to do based on the system property
106+ it.enabled = System .getProperty(" unidata.native.publish" )?.toBoolean() ? : false
107+ }
108+ }
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ publishing {
7777 repositories.clear()
7878 repositories {
7979 maven {
80- name = " releases "
80+ name = " NativeReleases "
8181 url = uri(" https://artifacts.unidata.ucar.edu/repository/unidata-releases/" )
8282 credentials {
8383 username = extra.properties[" artifacts.username" ] as ? String
@@ -98,4 +98,12 @@ publishing {
9898
9999tasks
100100 .matching { it.group == " publishing" }
101- .forEach { it.enabled = System .getProperty(" unidata.native.publish" )?.toBoolean() ? : false }
101+ .forEach {
102+ // always disable publish task from ncj-artifact-publishing-conventions plugin
103+ if (it.name.contains(" ToReleasesRepository" )) {
104+ it.enabled = false
105+ } else {
106+ // for everything else, decide what to do based on the system property
107+ it.enabled = System .getProperty(" unidata.native.publish" )?.toBoolean() ? : false
108+ }
109+ }
You can’t perform that action at this time.
0 commit comments