Skip to content

Commit 1648f23

Browse files
committed
chore: release v1.0.0
1 parent 821ecc9 commit 1648f23

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## 0.2.4
1+
## 1.0.0
2+
* Add null safety
3+
* Subclassing support for `ParseObject` and `ParseUser`
4+
* Fix bugs and enhancement
5+
* Update documentation
6+
7+
## 0.2.4
28
* Moving from personal to organization account
39

410
## 0.2.3

README.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
# Flutter Parse
22
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.heygears.com%2Feyro-labs%2Fflutter_parse.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.heygears.com%2Feyro-labs%2Fflutter_parse?ref=badge_shield) [![Build Status](https://travis-ci.org/eyro-labs/flutter_parse.svg?branch=master)](https://travis-ci.org/eyro-labs/flutter_parse#) [![](https://img.shields.io/pub/v/flutter_parse.svg)](https://github.com/eyro-labs/flutter_parse) [![Coverage Status](https://coveralls.io/repos/github/eyro-labs/flutter_parse/badge.svg?branch=master)](https://coveralls.io/github/eyro-labs/flutter_parse?branch=master)
33

4-
Packages for managing Parse SDK using pure Dart.
4+
Plugin for managing and accessing Parse Server for Dart and Flutter.
55

66
Features:
77
* ParseACL
8+
* ParseCloud
89
* ParseConfig
910
* ParseFile
11+
* ParseGeoPoint
12+
* ParseLiveQuery
1013
* ParseObject
1114
* ParseQuery
1215
* ParseRole
16+
* ParseSchema
1317
* ParseSession
1418
* ParseUser
1519

@@ -19,7 +23,7 @@ Add to pubspec.yaml:
1923

2024
```yaml
2125
dependencies:
22-
flutter_parse: ^0.2.4
26+
flutter_parse: ^1.0.0
2327
```
2428
2529
## Import Library
@@ -35,6 +39,7 @@ void main() {
3539
server: 'YOUR_PARSE_SERVER_URL',
3640
applicationId: 'YOUR_PARSE_APPLICATION_ID',
3741
clientKey: 'YOUR_PARSE_CLIENT_KEY',
42+
localStorage: Storage("path/to/writable/data"),
3843
);
3944
Parse.initialize(config);
4045
runApp(MyApp());
@@ -67,12 +72,12 @@ await user.#();
6772
final query = ParseQuery(className: 'Beacon')
6873
..whereEqualTo('proximityUUID', 'CB10023F-A318-3394-4199-A8730C7C1AEC')
6974
..whereLessThanOrEqualTo('major', 10);
70-
final listObjects = await query.findAsync();
75+
final listObjects = await query.find();
7176
```
7277

7378
# Author
7479

75-
Parse Dart plugin is developed by Alann Maulana. You can contact me at <kangmas.alan@gmail.com>.
80+
Parse Dart plugin is developed by Eyro Labs. You can contact me at <maulana@cubeacon.com>.
7681

7782
## License
7883

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_parse
22
description: Plugin for managing and accessing Parse Server for Dart VM and Flutter.
3-
version: 0.2.4
3+
version: 1.0.0
44
homepage: https://github.com/eyro-labs/flutter_parse
55

66
environment:

0 commit comments

Comments
 (0)