Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/site/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
theme: unidata-jekyll-theme

# this will appear in an HTML meta tag, sidebar, and perhaps elsewhere
docset_version: "5.10"
docset_version: "5.11"

# this appears on the top navigation bar next to the home button
topnav_title: netCDF-Java
Expand Down
8 changes: 7 additions & 1 deletion docs/src/site/pages/netcdfJava/Upgrade.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Upgrading to netCDF-Java version 5.x
last_updated: 2025-10-30
last_updated: 2025-06-24
sidebar: netcdfJavaTutorial_sidebar
toc: false
permalink: upgrade.html
Expand All @@ -12,6 +12,7 @@ permalink: upgrade.html
* Java {{ site.java_version_build }} is required to build the library.

## Quick Navigation
* [Summary of changes for v5.11.x](#netcdf-java-changes-511x)
* [Summary of changes for v5.10.x](#netcdf-java-changes-510x)
* [Summary of changes for v5.9.x](#netcdf-java-api-changes-59x)
* [Summary of changes for v5.8.x](#netcdf-java-api-changes-58x)
Expand All @@ -24,6 +25,11 @@ permalink: upgrade.html
* [Summary of changes for v5.1.x](#netcdf-java-api-changes-51x)
* [Summary of changes for v5.0.x](#netcdf-java-api-changes-50x)

## netCDF-Java Changes (5.11.x)

Point release notes:
* [5.11.0](https://github.com/Unidata/netcdf-java/releases/tag/v5.11.0){:target="_blank"} (_yyyy-mm-dd, unreleased_)

## netCDF-Java Changes (5.10.x)

Point release notes:
Expand Down
2 changes: 1 addition & 1 deletion gradle/ncj.libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
netcdf-java = "5.10.0-SNAPSHOT"
netcdf-java = "5.11.0-SNAPSHOT"

unidata-doc-theme = "0.1.1"

Expand Down
12 changes: 10 additions & 2 deletions native-compression/libaec-native/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ publishing {
repositories.clear()
repositories {
maven {
name = "releases"
name = "NativeReleases"
url = uri("https://artifacts.unidata.ucar.edu/repository/unidata-releases/")
credentials {
username = extra.properties["artifacts.username"] as? String
Expand All @@ -97,4 +97,12 @@ publishing {

tasks
.matching { it.group == "publishing" }
.forEach { it.enabled = System.getProperty("unidata.native.publish")?.toBoolean() ?: false }
.forEach {
// always disable publish task from ncj-artifact-publishing-conventions plugin
if (it.name.contains("ToReleasesRepository")) {
it.enabled = false
} else {
// for everything else, decide what to do based on the system property
it.enabled = System.getProperty("unidata.native.publish")?.toBoolean() ?: false
}
}
12 changes: 10 additions & 2 deletions native-compression/libblosc2-native/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ publishing {
repositories.clear()
repositories {
maven {
name = "releases"
name = "NativeReleases"
url = uri("https://artifacts.unidata.ucar.edu/repository/unidata-releases/")
credentials {
username = extra.properties["artifacts.username"] as? String
Expand All @@ -98,4 +98,12 @@ publishing {

tasks
.matching { it.group == "publishing" }
.forEach { it.enabled = System.getProperty("unidata.native.publish")?.toBoolean() ?: false }
.forEach {
// always disable publish task from ncj-artifact-publishing-conventions plugin
if (it.name.contains("ToReleasesRepository")) {
it.enabled = false
} else {
// for everything else, decide what to do based on the system property
it.enabled = System.getProperty("unidata.native.publish")?.toBoolean() ?: false
}
}
Loading