Skip to content

Commit

Permalink
Merge pull request #170 from appwrite/dev
Browse files Browse the repository at this point in the history
fix: for appwrite 1.4.x
  • Loading branch information
abnegate authored Sep 1, 2023
2 parents 81c1e23 + e5982f8 commit e7697d5
Show file tree
Hide file tree
Showing 14 changed files with 230 additions and 213 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 10.0.1

* Added a new `label` function to the `Role` helper class
* Update internal variable names to prevent name collision
* Fix: content range header inconsistency in chunked uploads [#648](https://github.com/appwrite/sdk-generator/pull/648)

## 10.0.0

* Support for Appwrite 1.4.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file:

```yml
dependencies:
appwrite: ^10.0.0
appwrite: ^10.0.1
```
You can install packages from the command line:
Expand Down
5 changes: 5 additions & 0 deletions lib/role.dart
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,9 @@ class Role {
static String member(String id) {
return 'member:$id';
}

/// Grants access to a user with the specified label.
static String label(String name) {
return 'label:$name';
}
}
Loading

0 comments on commit e7697d5

Please sign in to comment.