From 9e7d244700e10ef841c717f6c8d1473a3ac296a6 Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Thu, 15 Feb 2024 17:25:40 +0000 Subject: [PATCH] release plugin 0.4.4 --- doc/guide/Installation.md | 4 ++-- models/ivoa/build.gradle.kts | 2 +- runtime/java/build.gradle.kts | 2 +- tools/ChangeLog.md | 3 ++- tools/gradletooling/gradle-plugin/build.gradle.kts | 2 +- tools/gradletooling/sample/build.gradle.kts | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/doc/guide/Installation.md b/doc/guide/Installation.md index c6155290..815a33e3 100644 --- a/doc/guide/Installation.md +++ b/doc/guide/Installation.md @@ -3,10 +3,10 @@ Installation The VO-DML tooling is based around [gradle](https://gradle.org) (currently version 8) which itself is based on Java. It is recommended that a minimum of JDK 11 is installed -(JKD 17 has also been tested) using a package manager for your OS and +(JDK 17 has also been tested) using a package manager for your OS and similarly use a package manager for gradle installation. Although if you are working with a repository that already has a `gradelw` file at the top level, then that can be used -in place of the gradle command, and it will handle the downloading an running of the correct gradle version. +in place of the gradle command, and it will handle the downloading and running of the correct gradle version. The functionality of the tooling is then encapsulated with a gradle plugin which is configured [in the quickstart instructions](QuickStart.md) diff --git a/models/ivoa/build.gradle.kts b/models/ivoa/build.gradle.kts index 9c61eb87..c1f178b8 100644 --- a/models/ivoa/build.gradle.kts +++ b/models/ivoa/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("net.ivoa.vo-dml.vodmltools") version "0.4.3" + id("net.ivoa.vo-dml.vodmltools") version "0.4.4" // id ("com.diffplug.spotless") version "5.17.1" `maven-publish` id("io.github.gradle-nexus.publish-plugin") version "1.3.0" diff --git a/runtime/java/build.gradle.kts b/runtime/java/build.gradle.kts index 396d0f13..935eefe5 100644 --- a/runtime/java/build.gradle.kts +++ b/runtime/java/build.gradle.kts @@ -6,7 +6,7 @@ plugins { signing } group = "org.javastro.ivoa.vo-dml" -version = "0.5.0" +version = "0.6.0" dependencies { diff --git a/tools/ChangeLog.md b/tools/ChangeLog.md index 63991ee3..2abe74b7 100644 --- a/tools/ChangeLog.md +++ b/tools/ChangeLog.md @@ -30,4 +30,5 @@ * 0.4.0 move to jakarta namespace * 0.4.1 Improved list API * 0.4.2 Update the vodsl support to 0.4.6 -* 0.4.3 Make work with windows \ No newline at end of file +* 0.4.3 Make work with windows +* 0.4.4 initial contained references support \ No newline at end of file diff --git a/tools/gradletooling/gradle-plugin/build.gradle.kts b/tools/gradletooling/gradle-plugin/build.gradle.kts index ec04b6e9..817d7b35 100644 --- a/tools/gradletooling/gradle-plugin/build.gradle.kts +++ b/tools/gradletooling/gradle-plugin/build.gradle.kts @@ -14,7 +14,7 @@ plugins { } group = "net.ivoa.vo-dml" -version = "0.4.3" +version = "0.4.4" repositories { mavenLocal() // FIXME remove this when releasing - just here to pick up local vodsl updates diff --git a/tools/gradletooling/sample/build.gradle.kts b/tools/gradletooling/sample/build.gradle.kts index a5b162cf..1cf16960 100644 --- a/tools/gradletooling/sample/build.gradle.kts +++ b/tools/gradletooling/sample/build.gradle.kts @@ -6,7 +6,7 @@ import ru.vyarus.gradle.plugin.python.task.PythonTask * */ plugins { - id("net.ivoa.vo-dml.vodmltools") version "0.4.3" + id("net.ivoa.vo-dml.vodmltools") version "0.4.4" // id ("com.diffplug.spotless") version "5.17.1" id("ru.vyarus.use-python") version "3.0.0"