Skip to content

Commit

Permalink
v0.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerbrandl committed Aug 30, 2023
1 parent e3dcc4a commit 53a2235
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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)
Expand Down
8 changes: 6 additions & 2 deletions docs/userguide/docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

## v0.11

Major improvments
Major improvements

* significantly improved library performance
* Added `Int.Weeks` extension
* Introduced supendable `join(components: List<Component>)` to wait for other components to become `DATA`
* Introduced suspendable `join(components: List<Component>)` to wait for other components to become `DATA`

Documentation & Examples
* New Example Shipyard - Multipart assembly


## v0.10
Expand Down
2 changes: 1 addition & 1 deletion docs/userguide/docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand Down

0 comments on commit 53a2235

Please sign in to comment.