Skip to content

Commit

Permalink
0.3.1 (#118)
Browse files Browse the repository at this point in the history
* Update to 0.3.1
  • Loading branch information
andreypfau authored Jan 16, 2024
1 parent 5327993 commit e5113ea
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.3.1

### Fixes

* Fixed invalid TL-B constructor prefix for transactions with text (also known as
Commentary/Memo) ([#117](https://github.com/ton-community/ton-kotlin/pull/117))

# 0.3.0

### New features
Expand All @@ -24,7 +31,7 @@
- `ton-kotlin-fift` removed due to lack of interest
- `ton-kotlin-logger` removed due uselessness

## Deprecated
### Deprecated

- [VarUInteger](https://github.com/ton-community/ton-kotlin/blob/main/ton-kotlin-block/src/commonMain/kotlin/org/ton/block/VarUInteger.kt#L18)
arithmetic operators will be removed in the next release due separation of serialization objects
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,28 @@

### Core components

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

### API Interfaces

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

### TL-B (TL-Binary)

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

## Documentation

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

<!-- Badges -->

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

[license]: LICENSE

Expand Down
2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ infix fun <T> Property<T>.by(value: T) {

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

licenses {
Expand Down

0 comments on commit e5113ea

Please sign in to comment.