Skip to content

Commit

Permalink
v0.23, readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
justdmitry committed Feb 12, 2025
1 parent cacacc0 commit d68f608
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Wrapper around `tonlibjson` library for accessing [Telegram Open Network](https:

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

[![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-net8.0-blue) ![GitHub License](https://img.shields.io/github/license/justdmitry/TonLib.NET?color=blue)
[![NuGet](https://img.shields.io/nuget/v/TonLib.Net.svg)](https://www.nuget.org/packages/TonLib.Net/) ![NuGet downloads](https://img.shields.io/nuget/dt/TonLib.NET) ![.NET 6.0](https://img.shields.io/badge/.NET-6.0-512BD4) ![.NET 8.0](https://img.shields.io/badge/.NET-8.0-512BD4) ![.NET 9.0](https://img.shields.io/badge/.NET-9.0-512BD4) ![GitHub License](https://img.shields.io/github/license/justdmitry/TonLib.NET)

⚠ For `net6.0` uses `System.Text.Json` package **v8.0.4** (from `net8.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 -> v8.0) as a transitive dependency, which I think is acceptable.
⚠ For `net6.0` uses `System.Text.Json` package **v8.0.5** (from `net8.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 -> v8.0) as a transitive dependency, which I think is acceptable.


## Features
Expand Down Expand Up @@ -74,9 +74,9 @@ The number of additional dependencies you need depends of what you already have

## 3rd-party libraries and dependencies

* Microsoft.Extensions.Logging.Abstractions v6.0.0 / v8.0.0
* Microsoft.Extensions.Options v6.0.0 / v8.0.0
* System.Text.Json v8.0.4 for both `net6.0` and `net8.0`
* Microsoft.Extensions.Logging.Abstractions v6.0.0 / v8.0.0 / v9.0.0
* Microsoft.Extensions.Options v6.0.0 / v8.0.0 / v9.0.0
* System.Text.Json v8.0.5 for both `net6.0` and `net8.0`, v9.0.0 for `net9.0`
* System.Text.Encodings.Web v8.0.0 for `net6.0` as transitive dependency


Expand Down
4 changes: 2 additions & 2 deletions TonLibDotNet/TonLibDotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
<PackageId>TonLib.Net</PackageId>
<Title>TonLib (tonlibjson) wrapper</Title>
<Authors>just_dmitry</Authors>
<Copyright>Copyright © Dmitry Popov, 2023-2024</Copyright>
<Copyright>Copyright © Dmitry Popov, 2023-2025</Copyright>
<PackageProjectUrl>https://github.com/justdmitry/TonLib.NET</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>[email protected]:justdmitry/TonLib.NET.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>ton, toncoin, the-open-network, tonlib, tonlibjson</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>0.22.0</Version>
<Version>0.23.0</Version>
<PackageReleaseNotes>Several changes, see GitHub changelog.</PackageReleaseNotes>
<Description>TonLib (tonlibjson) wrapper for accessing Telegram Open Network lite servers (nodes) via ADNL protocol.</Description>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
Expand Down

0 comments on commit d68f608

Please sign in to comment.