diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index c51344400..ff7b747ba 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -10,26 +10,13 @@
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
@@ -99,34 +86,70 @@
-
-
-
+
+
+
-
-
-
+
+
+
-
-
+
+
-
-
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -173,7 +196,7 @@
@@ -215,21 +238,21 @@
-
-
-
+
+
+
@@ -549,7 +572,14 @@
1547842562998
-
+
+ 1547895940859
+
+
+
+ 1547895940859
+
+
@@ -563,6 +593,7 @@
+
@@ -574,18 +605,18 @@
-
+
-
+
-
+
@@ -654,7 +685,8 @@
-
+
+
@@ -747,7 +779,6 @@
-
@@ -929,16 +960,6 @@
-
-
-
-
-
-
-
-
-
-
@@ -1023,24 +1044,37 @@
-
+
-
-
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 215c61a13..ae22bd85b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 1.0.7
+
+Some items now return a response rather than a ParseObject
+
## 1.0.6
BREAK FIX - Fixed ParseUser return type so now returns ParseResponse
diff --git a/README.md b/README.md
index 7a1fd3baa..b4dba2a05 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Want to get involved? Join our Slack channel and help out! (http://flutter-parse
To install, either add to your pubspec.yaml
```
dependencies:
- parse_server_sdk: ^1.0.6
+ parse_server_sdk: ^1.0.7
```
or clone this repository and add to your project. As this is an early development with multiple contributors, it is probably best to download/clone and keep updating as an when a new feature is added.
@@ -157,7 +157,7 @@ You can now save an object by calling .pin() on an instance of an object
dietPlan.pin();
```
-and to retreive it
+and to retrieve it
```
var dietPlan = DietPlan().fromPin('OBJECT ID OF OBJECT');
diff --git a/example/lib/main.dart b/example/lib/main.dart
index 047f1c36f..8558aa208 100644
--- a/example/lib/main.dart
+++ b/example/lib/main.dart
@@ -169,7 +169,7 @@ class _MyAppState extends State {
if (response.success) user = response.result;
var queryBuilder = QueryBuilder(ParseUser.forQuery())
- ..whereStartsWith(ParseUser.keyUsername, 'phillw');;
+ ..whereStartsWith(ParseUser.keyUsername, 'phillw');
var apiResponse = await queryBuilder.query();
if (apiResponse.success) user = response.result;
diff --git a/lib/src/objects/parse_response.dart b/lib/src/objects/parse_response.dart
index 3c8ee8daf..f2dc1b947 100644
--- a/lib/src/objects/parse_response.dart
+++ b/lib/src/objects/parse_response.dart
@@ -26,7 +26,7 @@ class ParseResponse {
} else if (apiResponse.body == "OK"){
return _handleSuccessWithNoResults(parseResponse, 2, "Successful request");
} else if (returnAsResult){
- return _handleSuccess(parseResponse, object, apiResponse.body);
+ return _handleSuccessWithoutParseObject(parseResponse, object, apiResponse.body);
} else {
return _handleSuccess(parseResponse, object, apiResponse.body);
}
diff --git a/pubspec.yaml b/pubspec.yaml
index 33427eed1..0d2fdab72 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
name: parse_server_sdk
description: Flutter plugin for Parse Server, (https://parseplatform.org), (https://back4app.com)
-version: 1.0.6
+version: 1.0.7
homepage: https://github.com/phillwiggins/flutter_parse_sdk
author: PhillWiggins