Skip to content

Commit

Permalink
0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
andreypfau committed Dec 24, 2022
1 parent eae5e06 commit 6f0b1f8
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@

```kotlin
dependencies {
implementation("org.ton:ton-kotlin:0.2.3")
implementation("org.ton:ton-kotlin:0.2.4")
}
```

2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ val isCI = System.getenv("CI") == "true"

allprojects {
group = "org.ton"
version = "0.2.4-SNAPSHOT"
version = "0.2.4"

apply(plugin = "kotlin-multiplatform")
apply(plugin = "kotlinx-serialization")
Original file line number Diff line number Diff line change
@@ -22,13 +22,17 @@ public data class StateInit(
val library: HashMapE<SimpleLib>
) {
public constructor(
code: CellRef<Cell>? = null,
data: CellRef<Cell>? = null,
code: Cell? = null,
data: Cell? = null,
library: HashMapE<SimpleLib> = HashMapE.of(),
splitDepth: UInt? = null,
special: TickTock? = null
) : this(
splitDepth.toMaybe(), special.toMaybe(), code.toMaybe(), data.toMaybe(), library
splitDepth.toMaybe(),
special.toMaybe(),
code?.let { CellRef(cell = it, AnyTlbConstructor) }.toMaybe(),
data?.let { CellRef(cell = it, AnyTlbConstructor) }.toMaybe(),
library
)

override fun toString(): String = "split_depth:$splitDepth special:$special code:$code data:$data library:$library"

0 comments on commit 6f0b1f8

Please sign in to comment.