Skip to content

Commit

Permalink
Update readme and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
altavir committed Apr 27, 2024
1 parent f840ffb commit 2cd1885
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 22 deletions.
24 changes: 17 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions dataforge-context/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -16,6 +16,6 @@ repositories {
}

dependencies {
implementation("space.kscience:dataforge-context:0.8.0")
implementation("space.kscience:dataforge-context:0.8.2")
}
```
4 changes: 2 additions & 2 deletions dataforge-data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -16,6 +16,6 @@ repositories {
}

dependencies {
implementation("space.kscience:dataforge-data:0.8.0")
implementation("space.kscience:dataforge-data:0.8.2")
}
```
4 changes: 2 additions & 2 deletions dataforge-io/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -16,6 +16,6 @@ repositories {
}

dependencies {
implementation("space.kscience:dataforge-io:0.8.0")
implementation("space.kscience:dataforge-io:0.8.2")
}
```
4 changes: 2 additions & 2 deletions dataforge-io/dataforge-io-yaml/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -16,6 +16,6 @@ repositories {
}

dependencies {
implementation("space.kscience:dataforge-io-yaml:0.8.0")
implementation("space.kscience:dataforge-io-yaml:0.8.2")
}
```
4 changes: 2 additions & 2 deletions dataforge-meta/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -16,6 +16,6 @@ repositories {
}

dependencies {
implementation("space.kscience:dataforge-meta:0.8.0")
implementation("space.kscience:dataforge-meta:0.8.2")
}
```
4 changes: 2 additions & 2 deletions dataforge-scripting/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -16,6 +16,6 @@ repositories {
}

dependencies {
implementation("space.kscience:dataforge-scripting:0.8.0")
implementation("space.kscience:dataforge-scripting:0.8.2")
}
```
4 changes: 2 additions & 2 deletions dataforge-workspace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -16,6 +16,6 @@ repositories {
}

dependencies {
implementation("space.kscience:dataforge-workspace:0.8.0")
implementation("space.kscience:dataforge-workspace:0.8.2")
}
```

0 comments on commit 2cd1885

Please sign in to comment.