Skip to content

Commit a72f69a

Browse files
authored
Merge pull request #76 from appwrite/dev
feat: .NET SDK update for version 0.21.1
2 parents b07c756 + 1388751 commit a72f69a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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.0</Version>
5+
<Version>0.21.1</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.0 ({Environment.OSVersion.Platform}; {Environment.OSVersion.VersionString})"},
72+
{ "user-agent" , $"AppwriteDotNetSDK/0.21.1 ({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.0"},
76+
{ "x-sdk-version", "0.21.1"},
7777
{ "X-Appwrite-Response-Format", "1.8.0" }
7878
};
7979

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## 0.21.0
3+
## 0.21.1
44

55
* Add transaction support for Databases and TablesDB
66

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.0" />
20+
<PackageReference Include="Appwrite" Version="0.21.1" />
2121
```
2222

2323
You can install packages from the command line:
2424

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

3333

0 commit comments

Comments
 (0)