Skip to content

Commit

Permalink
publish 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pahjbo committed Jul 5, 2024
1 parent a43d888 commit 8b4f658
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion models/ivoa/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("net.ivoa.vo-dml.vodmltools") version "0.5.2"
id("net.ivoa.vo-dml.vodmltools") version "0.5.3"
// id ("com.diffplug.spotless") version "5.17.1"
`maven-publish`
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
Expand Down
2 changes: 1 addition & 1 deletion runtime/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
signing
}
group = "org.javastro.ivoa.vo-dml"
version = "0.7.0"
version = "0.7.1"


dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public interface ModelManagement <T>{
* Write XML schema for the model.
* Note that these schema are internally generated by JAXB, and as such should not be regarded as the definitive schema to be published -
* they are used mainly in automated testing.
* @deprecated - should only use the schema generated by the top level.
* @deprecated - should only use the schema generated by the top level tooling.
*/
void writeXMLSchema();

Expand Down
4 changes: 4 additions & 0 deletions tools/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@
* *vodsl breaking change* - model can have a title - title is now a keyword and needs to be escaped with caret if you want to use "title" as an attribute name for instance
* ability to specify the ucd
* *java breaking change* generated java code will have constructor arguments in vodsl order - this is a good thing ultimately!
* 0.5.3
* support aggregation of references - by a join table
* improve mkdocs site generation
* fix Java bug where dtype hierarchies not having all members saved as embeddable in database.
2 changes: 2 additions & 0 deletions tools/gradletooling/TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ VODML Tooling TODO
* perhaps standardize on the binding of the ivoa std primitives so that they do not need to be specified in the files
* specialized "hand written" IVOA base schema
* allow "schema fragments" in binding to cope with specialist overriding of primitives and some base dataTypes...
* consider what abstract means - perhaps use should be restricted.
* Anything that might help in mapping to OPENAPI
* idea of a "view" - eg. jobsummary in uws
* OpenApi descriminators

* STC
* epoch - not really defined as something that is used properly
Expand Down
2 changes: 1 addition & 1 deletion tools/gradletooling/gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
}

group = "net.ivoa.vo-dml"
version = "0.5.2"
version = "0.5.3"

repositories {
mavenLocal() // FIXME remove this when releasing - just here to pick up local vodsl updates
Expand Down
2 changes: 1 addition & 1 deletion tools/gradletooling/sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ru.vyarus.gradle.plugin.python.task.PythonTask
*
*/
plugins {
id("net.ivoa.vo-dml.vodmltools") version "0.5.2"
id("net.ivoa.vo-dml.vodmltools") version "0.5.3"
id("com.diffplug.spotless") version "6.25.0"
id("ru.vyarus.use-python") version "4.0.0"

Expand Down
2 changes: 1 addition & 1 deletion tools/gradletooling/sample/src/test/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</Pattern>
</encoder>
</appender>
<logger name="org.hibernate.SQL" level="debug" additivity="false">
<logger name="org.hibernate.SQL" level="trace" additivity="false">
<appender-ref ref="STDOUT"/>
</logger>
<logger name="org.hibernate.type.descriptor.sql" level="trace" additivity="false">
Expand Down

0 comments on commit 8b4f658

Please sign in to comment.