Skip to content

Commit e8f050a

Browse files
committed
regen sdk
1 parent 1388751 commit e8f050a

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

Appwrite/Appwrite.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
44
<PackageId>Appwrite</PackageId>
5-
<Version>0.21.1</Version>
5+
<Version>0.21.2</Version>
66
<Authors>Appwrite Team</Authors>
77
<Company>Appwrite Team</Company>
88
<Description>

Appwrite/Client.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ public Client(
6969
_headers = new Dictionary<string, string>()
7070
{
7171
{ "content-type", "application/json" },
72-
{ "user-agent" , $"AppwriteDotNetSDK/0.21.1 ({Environment.OSVersion.Platform}; {Environment.OSVersion.VersionString})"},
72+
{ "user-agent" , $"AppwriteDotNetSDK/0.21.2 ({Environment.OSVersion.Platform}; {Environment.OSVersion.VersionString})"},
7373
{ "x-sdk-name", ".NET" },
7474
{ "x-sdk-platform", "server" },
7575
{ "x-sdk-language", "dotnet" },
76-
{ "x-sdk-version", "0.21.1"},
76+
{ "x-sdk-version", "0.21.2"},
7777
{ "X-Appwrite-Response-Format", "1.8.0" }
7878
};
7979

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 0.21.2
4+
5+
* Fix: handle Object[] during array deserialization
6+
37
## 0.21.1
48

59
* Add transaction support for Databases and TablesDB

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ Appwrite is an open-source backend as a service server that abstract and simplif
1717
Add this reference to your project's `.csproj` file:
1818

1919
```xml
20-
<PackageReference Include="Appwrite" Version="0.21.1" />
20+
<PackageReference Include="Appwrite" Version="0.21.2" />
2121
```
2222

2323
You can install packages from the command line:
2424

2525
```powershell
2626
# Package Manager
27-
Install-Package Appwrite -Version 0.21.1
27+
Install-Package Appwrite -Version 0.21.2
2828
2929
# or .NET CLI
30-
dotnet add package Appwrite --version 0.21.1
30+
dotnet add package Appwrite --version 0.21.2
3131
```
3232

3333

0 commit comments

Comments
 (0)