Skip to content

Commit

Permalink
v0.11.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerbrandl committed Sep 1, 2023
1 parent da46c06 commit 1d91c5a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {

group = "com.github.holgerbrandl"
//version = "0.8.101"
version = "0.11.2"
version = "0.11.3"
//version = "0.12-SNAPSHOT"


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.11.2"
implementation "com.github.holgerbrandl:kalasim:0.11.3"
}
```

Expand Down
4 changes: 3 additions & 1 deletion src/main/kotlin/org/kalasim/SimulationEntity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ abstract class SimulationEntity(name: String? = null, val simKoin: Koin = Depend
get() = env.now
// private set

val nowWT = now.toWallTime()
val nowWT =
get() = now.toWallTime()


val random
get() = env.random
Expand Down

0 comments on commit 1d91c5a

Please sign in to comment.