We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentc4a32c2 commitdff2e79Copy full SHA for dff2e79
Appwrite/Appwrite.csproj
@@ -2,7 +2,7 @@
2
<PropertyGroup>
3
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
4
<PackageId>Appwrite</PackageId>
5
- <Version>0.23.0</Version>
+ <Version>0.24.0</Version>
6
<Authors>Appwrite Team</Authors>
7
<Company>Appwrite Team</Company>
8
<Description>
Appwrite/Client.cs
@@ -69,11 +69,11 @@ public Client(
69
_headers=newDictionary<string,string>()
70
{
71
{"content-type","application/json"},
72
-{"user-agent",$"AppwriteDotNetSDK/0.23.0 ({Environment.OSVersion.Platform};{Environment.OSVersion.VersionString})"},
+{"user-agent",$"AppwriteDotNetSDK/0.24.0 ({Environment.OSVersion.Platform};{Environment.OSVersion.VersionString})"},
73
{"x-sdk-name",".NET"},
74
{"x-sdk-platform","server"},
75
{"x-sdk-language","dotnet"},
76
-{"x-sdk-version","0.23.0"},
+{"x-sdk-version","0.24.0"},
77
{"X-Appwrite-Response-Format","1.8.0"}
78
};
79
CHANGELOG.md
@@ -1,5 +1,9 @@
1
#Change Log
+##0.24.0
+
+* Added ability to create attributes and indexes synchronously while creating a collection
##0.23.0
9
* Rename`VCSDeploymentType` enum to`VCSReferenceType`
README.md
@@ -17,17 +17,17 @@ Appwrite is an open-source backend as a service server that abstract and simplif
17
Add this reference to your project's`.csproj` file:
18
19
```xml
20
-<PackageReferenceInclude="Appwrite"Version="0.23.0" />
+<PackageReferenceInclude="Appwrite"Version="0.24.0" />
21
```
22
23
You can install packages from the command line:
24
25
```powershell
26
# Package Manager
27
-Install-Package Appwrite -Version 0.23.0
+Install-Package Appwrite -Version 0.24.0
28
29
# or .NET CLI
30
-dotnet add package Appwrite --version 0.23.0
+dotnet add package Appwrite --version 0.24.0
31
32
33