Skip to content

Commit db89fdd

Browse files
authored
Merge pull request #1579 from Unidata/5.10.0
Release 5.10.0
2 parents a0c6131 + 2924a49 commit db89fdd

5 files changed

Lines changed: 29 additions & 7 deletions

File tree

docs/src/site/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
theme: 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
88
topnav_title: netCDF-Java

docs/src/site/pages/netcdfJava/Upgrade.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Upgrading to netCDF-Java version 5.x
3-
last_updated: 2025-10-30
3+
last_updated: 2025-06-24
44
sidebar: netcdfJavaTutorial_sidebar
55
toc: false
66
permalink: 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

2935
Point release notes:

gradle/ncj.libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
netcdf-java = "5.10.0-SNAPSHOT"
2+
netcdf-java = "5.11.0-SNAPSHOT"
33

44
unidata-doc-theme = "0.1.1"
55

native-compression/libaec-native/build.gradle.kts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff 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

9898
tasks
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+
}

native-compression/libblosc2-native/build.gradle.kts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff 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

9999
tasks
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+
}

0 commit comments

Comments
 (0)