Skip to content

Commit

Permalink
0.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
andreypfau committed Feb 4, 2023
1 parent 04bff09 commit 04ed26f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

```kotlin
dependencies {
implementation("org.ton:ton-kotlin:0.2.11")
implementation("org.ton:ton-kotlin:0.2.12")
}
```

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

allprojects {
group = "org.ton"
version = "0.2.11"
version = "0.2.12"

apply(plugin = "kotlin-multiplatform")
apply(plugin = "kotlinx-serialization")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ public inline fun CellBuilder.storeRef(refBuilder: CellBuilder.() -> Unit): Cell
storeRef(cell)
}

public fun CellBuilder(cell: Cell): CellBuilder =
CellBuilder.of(cell)
public inline fun CellBuilder(cell: Cell): CellBuilder = CellBuilder.of(cell)
public inline fun CellBuilder(): CellBuilder = CellBuilder.beginCell()

private class CellBuilderImpl(
override var bits: MutableBitString = ByteBackedMutableBitString.of(),
Expand Down

0 comments on commit 04ed26f

Please sign in to comment.