From 53a2235fc7e385fc29aebb59e2ef0026308729fe Mon Sep 17 00:00:00 2001 From: brandl Date: Wed, 30 Aug 2023 13:17:28 +0200 Subject: [PATCH] v0.11 release --- build.gradle.kts | 6 +++--- docs/userguide/docs/changes.md | 8 ++++++-- docs/userguide/docs/setup.md | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 36344deb..68542206 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,8 +13,8 @@ plugins { group = "com.github.holgerbrandl" //version = "0.8.101" -//version = "0.9.1" -version = "0.11-SNAPSHOT" +version = "0.11" +//version = "0.11-SNAPSHOT" repositories { @@ -76,7 +76,7 @@ val compileKotlin: KotlinCompile by tasks compileKotlin.kotlinOptions.freeCompilerArgs += "-Xallow-any-scripts-in-source-roots" //todo remove for release -compileKotlin.kotlinOptions.freeCompilerArgs += "-Xcontext-receivers" +//compileKotlin.kotlinOptions.freeCompilerArgs += "-Xcontext-receivers" // to set bytecode version to 11 we need to do 2 things (note: this requires the usage projects to do the same) diff --git a/docs/userguide/docs/changes.md b/docs/userguide/docs/changes.md index 8bb84db6..5878ea6d 100644 --- a/docs/userguide/docs/changes.md +++ b/docs/userguide/docs/changes.md @@ -2,10 +2,14 @@ ## v0.11 -Major improvments +Major improvements + * significantly improved library performance * Added `Int.Weeks` extension -* Introduced supendable `join(components: List)` to wait for other components to become `DATA` +* Introduced suspendable `join(components: List)` to wait for other components to become `DATA` + +Documentation & Examples +* New Example Shipyard - Multipart assembly ## v0.10 diff --git a/docs/userguide/docs/setup.md b/docs/userguide/docs/setup.md index 75388b48..6260de57 100644 --- a/docs/userguide/docs/setup.md +++ b/docs/userguide/docs/setup.md @@ -7,7 +7,7 @@ To get started simply add it as a dependency: ``` dependencies { - implementation "com.github.holgerbrandl:kalasim:0.10" + implementation "com.github.holgerbrandl:kalasim:0.11" } ```