From 636336ab472943ddb9d94dabedc87a8f84ce44fe Mon Sep 17 00:00:00 2001 From: Bastiaan Date: Fri, 15 Mar 2024 11:02:43 +0100 Subject: [PATCH] bump version and update README.md --- README.md | 2 +- java-sdk/buildSrc/src/main/kotlin/Versions.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d25ecee2..61b0e3ac 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ - In the `passive` subdirectory, add schemas for passive data collection, like wearables. - In the `stream` subdirectory, add schemas used in Kafka Streams. - The `specifications` directory contains specifications of what data types are collected through which devices. -- Java SDKs for each of the components are provided in the `java-sdk` folder, see installation instructions there. They are automatically generated from the Avro schemas using the Avro 1.8.2 specification. + - Java SDKs for each of the components are provided in the `java-sdk` folder, see installation instructions there. They are automatically generated from the Avro schemas using the Avro specification (version in [Versions.kt](java-sdk/buildSrc/src/main/kotlin/Versions.kt)). ## Usage diff --git a/java-sdk/buildSrc/src/main/kotlin/Versions.kt b/java-sdk/buildSrc/src/main/kotlin/Versions.kt index bb9ad230..186275ca 100644 --- a/java-sdk/buildSrc/src/main/kotlin/Versions.kt +++ b/java-sdk/buildSrc/src/main/kotlin/Versions.kt @@ -1,5 +1,5 @@ object Versions { - const val project = "0.8.7-SNAPSHOT" + const val project = "0.8.7" const val kotlin = "1.9.10" const val java = 17