Skip to content

Commit 77478f7

Browse files
committed
v0.20.0
1 parent 21d607c commit 77478f7

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Wrapper around `tonlibjson` library for accessing [Telegram Open Network](https:
55

66
**Does not** require TonAPI, TonCenter API, TonKeeper API or any other HTTP API.
77

8-
[![NuGet](https://img.shields.io/nuget/v/TonLib.Net.svg?color=blue)](https://www.nuget.org/packages/TonLib.Net/) ![NuGet downloads](https://img.shields.io/nuget/dt/TonLib.NET?color=blue) ![Framework](https://img.shields.io/badge/framework-net6.0-blue) ![Framework](https://img.shields.io/badge/framework-net7.0-blue) ![GitHub License](https://img.shields.io/github/license/justdmitry/TonLib.NET?color=blue)
8+
[![NuGet](https://img.shields.io/nuget/v/TonLib.Net.svg?color=blue)](https://www.nuget.org/packages/TonLib.Net/) ![NuGet downloads](https://img.shields.io/nuget/dt/TonLib.NET?color=blue) ![Framework](https://img.shields.io/badge/framework-net6.0-blue) ![Framework](https://img.shields.io/badge/framework-net7.0-blue) ![Framework](https://img.shields.io/badge/framework-net8.0-blue) ![GitHub License](https://img.shields.io/github/license/justdmitry/TonLib.NET?color=blue)
99

1010
⚠ For `net6.0` uses `System.Text.Json` package **v7.0.0** (from `net7.0`) - it makes [de]serialization much simpler (because of [Polymorphic serialization](https://learn.microsoft.com/en-us/dotnet/standard/serialization/system-text-json/polymorphism)). It only updates `System.Text.Encodings.Web` (v6.0 -> v7.0) as a transitive dependency, which I think is acceptable.
1111

@@ -19,10 +19,10 @@ Wrapper around `tonlibjson` library for accessing [Telegram Open Network](https:
1919
* Read and parse smartcontract data, call get-methods [(sample)](/TonLibDotNet.Demo/Samples/ReadInfoFromSmartContracts.cs);
2020
* Resolve domains [(sample)](/TonLibDotNet.Demo/Samples/ResolveDomains.cs)
2121
* `TonRecipes` class (ready-to-use one-liners) to work with:
22-
* TEP-81 DNS contracts (parse all data, update entries) [(sample)](/TonLibDotNet.Demo/Samples/Recipes/RootDnsGetAllInfo.cs);
23-
* Telemint contracts (*.t.me usernames and +888 anonymous numbers) [(sample)](/TonLibDotNet.Demo/Samples/Recipes/TelemintGetAllInfo.cs)
24-
* TEP-74 Jettons (transfer, burn, read info) - *blocked by https://github.com/ton-blockchain/ton/issues/709*
25-
* TEP-62 NFTs - *soon*
22+
* [TEP-81](https://github.com/ton-blockchain/TEPs/blob/master/text/0081-dns-standard.md) DNS contracts (parse all data, update entries) [(sample)](/TonLibDotNet.Demo/Samples/Recipes/RootDnsGetAllInfo.cs);
23+
* Telemint contracts (*.t.me usernames and +888 anonymous numbers) [(sample)](/TonLibDotNet.Demo/Samples/Recipes/Jetton.cs)
24+
* [TEP-74](https://github.com/ton-blockchain/TEPs/blob/master/text/0074-jettons-standard.md) Jettons (read info, transfer, burn) [(sample)](/TonLibDotNet.Demo/Samples/Recipes/TelemintGetAllInfo.cs)
25+
* [TEP-62](https://github.com/ton-blockchain/TEPs/blob/master/text/0062-nft-standard.md) NFTs (read info, transfer) [(sample)](/TonLibDotNet.Demo/Samples/Recipes/NFTs.cs)
2626

2727
And more:
2828

@@ -74,15 +74,15 @@ The number of additional dependencies you need depends of what you already have
7474

7575
## 3rd-party libraries and dependencies
7676

77-
* Microsoft.Extensions.Logging.Abstractions v6.0.0 / v7.0.0
78-
* Microsoft.Extensions.Options v6.0.0 / v7.0.0
79-
* System.Text.Json v7.0.0 always (even for `net6.0`)
80-
* System.Text.Encodings.Web v7.0.0 as transitive dependency
77+
* Microsoft.Extensions.Logging.Abstractions v6.0.0 / v7.0.0 / v8.0.0
78+
* Microsoft.Extensions.Options v6.0.0 / v7.0.0 / v8.0.0
79+
* System.Text.Json v7.0.0 for `net6.0` and `net7.0`, v8.0.0 for `net8.0`
80+
* System.Text.Encodings.Web v7.0.0 for `net6.0` as transitive dependency
8181

8282

8383
## Donate
8484

85-
`EQDP_JFi4IucdPmEHJBSjEoSHlbC57G_8HLJAgqe05a-sGZ8`
85+
`just_dmitry.ton`
8686

8787

8888
## Useful links

TonLibDotNet/TonLibDotNet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<RepositoryType>git</RepositoryType>
1717
<PackageTags>ton, toncoin, the-open-network, tonlib, tonlibjson</PackageTags>
1818
<PackageLicenseFile>LICENSE</PackageLicenseFile>
19-
<Version>0.20.0-rc1</Version>
19+
<Version>0.20.0</Version>
2020
<PackageReleaseNotes>A lot of changes, see GitHub changelog.</PackageReleaseNotes>
2121
<Description>TonLib (tonlibjson) wrapper for accessing Telegram Open Network lite servers (nodes) via ADNL protocol.</Description>
2222
<GenerateDocumentationFile>True</GenerateDocumentationFile>

0 commit comments

Comments
 (0)