Skip to content

Commit

Permalink
chore: release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alann-maulana committed Jul 30, 2021
1 parent 821ecc9 commit 1648f23
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## 0.2.4
## 1.0.0
* Add null safety
* Subclassing support for `ParseObject` and `ParseUser`
* Fix bugs and enhancement
* Update documentation

## 0.2.4
* Moving from personal to organization account

## 0.2.3
Expand Down
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
# Flutter Parse
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Feyro-labs%2Fflutter_parse.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.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)

Packages for managing Parse SDK using pure Dart.
Plugin for managing and accessing Parse Server for Dart and Flutter.

Features:
* ParseACL
* ParseCloud
* ParseConfig
* ParseFile
* ParseGeoPoint
* ParseLiveQuery
* ParseObject
* ParseQuery
* ParseRole
* ParseSchema
* ParseSession
* ParseUser

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

```yaml
dependencies:
flutter_parse: ^0.2.4
flutter_parse: ^1.0.0
```
## Import Library
Expand All @@ -35,6 +39,7 @@ void main() {
server: 'YOUR_PARSE_SERVER_URL',
applicationId: 'YOUR_PARSE_APPLICATION_ID',
clientKey: 'YOUR_PARSE_CLIENT_KEY',
localStorage: Storage("path/to/writable/data"),
);
Parse.initialize(config);
runApp(MyApp());
Expand Down Expand Up @@ -67,12 +72,12 @@ await user.signUp();
final query = ParseQuery(className: 'Beacon')
..whereEqualTo('proximityUUID', 'CB10023F-A318-3394-4199-A8730C7C1AEC')
..whereLessThanOrEqualTo('major', 10);
final listObjects = await query.findAsync();
final listObjects = await query.find();
```

# Author

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

## License

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_parse
description: Plugin for managing and accessing Parse Server for Dart VM and Flutter.
version: 0.2.4
version: 1.0.0
homepage: https://github.com/eyro-labs/flutter_parse

environment:
Expand Down

0 comments on commit 1648f23

Please sign in to comment.