Skip to content

Commit

Permalink
v0.12.108 release
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerbrandl committed Jun 12, 2024
1 parent 8c2902a commit 9c9126a
Show file tree
Hide file tree
Showing 3 changed files with 4 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 @@ -12,7 +12,7 @@ plugins {
}

group = "com.github.holgerbrandl"
version = "0.12.108-SNAPSHOT"
version = "0.12.108"
//version = "2023.1-SNAPSHOT"
//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.12.107"
implementation "com.github.holgerbrandl:kalasim:0.12.108"
}
```

Expand Down
3 changes: 2 additions & 1 deletion src/main/kotlin/org/kalasim/Environment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ open class Environment(
private set // no longer needed/wanted --> use run

@Deprecated("use now instead", ReplaceWith("now"))
val nowWT: Instant = now
val nowWT: Instant
get() = now

@AmbiguousDuration
val nowTT: TickTime
Expand Down

0 comments on commit 9c9126a

Please sign in to comment.