Skip to content

Commit e5113ea

Browse files
authored
0.3.1 (#118)
* Update to 0.3.1
1 parent 5327993 commit e5113ea

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.3.1
2+
3+
### Fixes
4+
5+
* Fixed invalid TL-B constructor prefix for transactions with text (also known as
6+
Commentary/Memo) ([#117](https://github.com/ton-community/ton-kotlin/pull/117))
7+
18
# 0.3.0
29

310
### New features
@@ -24,7 +31,7 @@
2431
- `ton-kotlin-fift` removed due to lack of interest
2532
- `ton-kotlin-logger` removed due uselessness
2633

27-
## Deprecated
34+
### Deprecated
2835

2936
- [VarUInteger](https://github.com/ton-community/ton-kotlin/blob/main/ton-kotlin-block/src/commonMain/kotlin/org/ton/block/VarUInteger.kt#L18)
3037
arithmetic operators will be removed in the next release due separation of serialization objects

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@
1010

1111
### Core components
1212

13-
* `org.ton:ton-kotlin-tvm:0.3.0` - TVM Primitives (Cells, BOC, etc.)
14-
* `org.ton:ton-kotlin-crypto:0.3.0` - Crypto primitives for TON (ED25519, SHA, etc.)
15-
* `org.ton:ton-kotlin-adnl:0.3.0` - ADNL (Abstract Datagram Network Layer) TON Network implementation
13+
* `org.ton:ton-kotlin-tvm:0.3.1` - TVM Primitives (Cells, BOC, etc.)
14+
* `org.ton:ton-kotlin-crypto:0.3.1` - Crypto primitives for TON (ED25519, SHA, etc.)
15+
* `org.ton:ton-kotlin-adnl:0.3.1` - ADNL (Abstract Datagram Network Layer) TON Network implementation
1616

1717
### API Interfaces
1818

19-
* `org.ton:ton-kotlin-contract:0.3.0` - Smart-contracts API interface
20-
* `org.ton:ton-kotlin-liteclient:0.3.0` - Lite-client API implementation
19+
* `org.ton:ton-kotlin-contract:0.3.1` - Smart-contracts API interface
20+
* `org.ton:ton-kotlin-liteclient:0.3.1` - Lite-client API implementation
2121

2222
### TL-B (TL-Binary)
2323

24-
* `org.ton:ton-kotlin-tlb:0.3.0` - TON TL-B (TL-Binary) serialization/deserialization
25-
* `org.ton:ton-kotlin-block-tlb:0.3.0` - Pre-generated TL-B schemas for TON Blockchain
26-
* `org.ton:ton-kotlin-hashmap-tlb:0.3.0` - Pre-generated TL-B schemas for TON Hashmap (also known as Dictionary)
24+
* `org.ton:ton-kotlin-tlb:0.3.1` - TON TL-B (TL-Binary) serialization/deserialization
25+
* `org.ton:ton-kotlin-block-tlb:0.3.1` - Pre-generated TL-B schemas for TON Blockchain
26+
* `org.ton:ton-kotlin-hashmap-tlb:0.3.1` - Pre-generated TL-B schemas for TON Hashmap (also known as Dictionary)
2727

2828
## Documentation
2929

3030
https://github.com/andreypfau/ton-kotlin/wiki/TON-Kotlin-documentation
3131

3232
<!-- Badges -->
3333

34-
[maven-central]: https://central.sonatype.com/artifact/org.ton/ton-kotlin-tvm/0.3.0
34+
[maven-central]: https://central.sonatype.com/artifact/org.ton/ton-kotlin-tvm/0.3.1
3535

3636
[license]: LICENSE
3737

build-logic/src/main/kotlin/publish.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ infix fun <T> Property<T>.by(value: T) {
2626

2727
fun MavenPom.configureMavenCentralMetadata(project: Project) {
2828
name by project.name
29-
description by "A multiplatform Kotlin library providing basic cryptographic functions and primitives"
29+
description by "Kotlin/Multiplatform SDK for The Open Network"
3030
url by "https://github.com/ton-community/ton-kotlin"
3131

3232
licenses {

0 commit comments

Comments
 (0)