From 2cd18854209cdf332e14581fa7c2cf7145dcf25c Mon Sep 17 00:00:00 2001 From: Alexander Nozik Date: Sat, 27 Apr 2024 10:01:36 +0300 Subject: [PATCH] Update readme and changelog --- CHANGELOG.md | 24 +++++++++++++++++------- build.gradle.kts | 3 ++- dataforge-context/README.md | 4 ++-- dataforge-data/README.md | 4 ++-- dataforge-io/README.md | 4 ++-- dataforge-io/dataforge-io-yaml/README.md | 4 ++-- dataforge-meta/README.md | 4 ++-- dataforge-scripting/README.md | 4 ++-- dataforge-workspace/README.md | 4 ++-- 9 files changed, 33 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a56e56e6..a94cb585 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,26 +3,36 @@ ## Unreleased ### Added -- Name index comparator -- Specialized ByteArrayValue ### Changed -- DataSink `branch` is replaced with `putAll` to avoid confusion with DataTree methods -- Meta delegate now uses a specific class that has a descriptor ### Deprecated ### Removed ### Fixed + +### Security + +## 0.8.2 - 2024-04-27 + +### Added + +- Name index comparator +- Specialized ByteArrayValue + +### Changed + +- DataSink `branch` is replaced with `putAll` to avoid confusion with DataTree methods +- Meta delegate now uses a specific class that has a descriptor + +### Fixed + - `listOfScheme` and `listOfConvertable` delegates provides correct items order. - Scheme meta setter works with proper sub-branch. - NameToken.parse improper work with indices. - Proper data handling for cache. - -### Security - ## 0.8.0 - 2024-02-03 ### Added diff --git a/build.gradle.kts b/build.gradle.kts index 78dc6d35..4db098be 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,11 +4,12 @@ import space.kscience.gradle.useSPCTeam plugins { id("space.kscience.gradle.project") + id("org.jetbrains.kotlinx.kover") version "0.7.6" } allprojects { group = "space.kscience" - version = "0.8.2-dev-1" + version = "0.8.2" } subprojects { diff --git a/dataforge-context/README.md b/dataforge-context/README.md index f0aff459..7970751c 100644 --- a/dataforge-context/README.md +++ b/dataforge-context/README.md @@ -6,7 +6,7 @@ Context and provider definitions ## Artifact: -The Maven coordinates of this project are `space.kscience:dataforge-context:0.8.0`. +The Maven coordinates of this project are `space.kscience:dataforge-context:0.8.2`. **Gradle Kotlin DSL:** ```kotlin @@ -16,6 +16,6 @@ repositories { } dependencies { - implementation("space.kscience:dataforge-context:0.8.0") + implementation("space.kscience:dataforge-context:0.8.2") } ``` diff --git a/dataforge-data/README.md b/dataforge-data/README.md index d77ed1b9..f08a43c2 100644 --- a/dataforge-data/README.md +++ b/dataforge-data/README.md @@ -6,7 +6,7 @@ ## Artifact: -The Maven coordinates of this project are `space.kscience:dataforge-data:0.8.0`. +The Maven coordinates of this project are `space.kscience:dataforge-data:0.8.2`. **Gradle Kotlin DSL:** ```kotlin @@ -16,6 +16,6 @@ repositories { } dependencies { - implementation("space.kscience:dataforge-data:0.8.0") + implementation("space.kscience:dataforge-data:0.8.2") } ``` diff --git a/dataforge-io/README.md b/dataforge-io/README.md index 85e49e5a..5168797b 100644 --- a/dataforge-io/README.md +++ b/dataforge-io/README.md @@ -6,7 +6,7 @@ IO module ## Artifact: -The Maven coordinates of this project are `space.kscience:dataforge-io:0.8.0`. +The Maven coordinates of this project are `space.kscience:dataforge-io:0.8.2`. **Gradle Kotlin DSL:** ```kotlin @@ -16,6 +16,6 @@ repositories { } dependencies { - implementation("space.kscience:dataforge-io:0.8.0") + implementation("space.kscience:dataforge-io:0.8.2") } ``` diff --git a/dataforge-io/dataforge-io-yaml/README.md b/dataforge-io/dataforge-io-yaml/README.md index 20f5b4f6..cc1ecd8c 100644 --- a/dataforge-io/dataforge-io-yaml/README.md +++ b/dataforge-io/dataforge-io-yaml/README.md @@ -6,7 +6,7 @@ YAML meta IO ## Artifact: -The Maven coordinates of this project are `space.kscience:dataforge-io-yaml:0.8.0`. +The Maven coordinates of this project are `space.kscience:dataforge-io-yaml:0.8.2`. **Gradle Kotlin DSL:** ```kotlin @@ -16,6 +16,6 @@ repositories { } dependencies { - implementation("space.kscience:dataforge-io-yaml:0.8.0") + implementation("space.kscience:dataforge-io-yaml:0.8.2") } ``` diff --git a/dataforge-meta/README.md b/dataforge-meta/README.md index bd11ebf1..a3209760 100644 --- a/dataforge-meta/README.md +++ b/dataforge-meta/README.md @@ -6,7 +6,7 @@ Meta definition and basic operations on meta ## Artifact: -The Maven coordinates of this project are `space.kscience:dataforge-meta:0.8.0`. +The Maven coordinates of this project are `space.kscience:dataforge-meta:0.8.2`. **Gradle Kotlin DSL:** ```kotlin @@ -16,6 +16,6 @@ repositories { } dependencies { - implementation("space.kscience:dataforge-meta:0.8.0") + implementation("space.kscience:dataforge-meta:0.8.2") } ``` diff --git a/dataforge-scripting/README.md b/dataforge-scripting/README.md index fbc5cb69..3167e1b4 100644 --- a/dataforge-scripting/README.md +++ b/dataforge-scripting/README.md @@ -6,7 +6,7 @@ ## Artifact: -The Maven coordinates of this project are `space.kscience:dataforge-scripting:0.8.0`. +The Maven coordinates of this project are `space.kscience:dataforge-scripting:0.8.2`. **Gradle Kotlin DSL:** ```kotlin @@ -16,6 +16,6 @@ repositories { } dependencies { - implementation("space.kscience:dataforge-scripting:0.8.0") + implementation("space.kscience:dataforge-scripting:0.8.2") } ``` diff --git a/dataforge-workspace/README.md b/dataforge-workspace/README.md index cea37368..f7461f30 100644 --- a/dataforge-workspace/README.md +++ b/dataforge-workspace/README.md @@ -6,7 +6,7 @@ ## Artifact: -The Maven coordinates of this project are `space.kscience:dataforge-workspace:0.8.0`. +The Maven coordinates of this project are `space.kscience:dataforge-workspace:0.8.2`. **Gradle Kotlin DSL:** ```kotlin @@ -16,6 +16,6 @@ repositories { } dependencies { - implementation("space.kscience:dataforge-workspace:0.8.0") + implementation("space.kscience:dataforge-workspace:0.8.2") } ```