diff --git a/CHANGELOG.md b/CHANGELOG.md
index 45c7ff7bc..217100391 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
-## 1.0.17
+## 1.0.18
+Bug fix
 
+## 1.0.17
+LiveQuery fix 
+Bug fixes
 
 ## 1.0.16
 Bug fixes
diff --git a/README.md b/README.md
index 2320c7f04..e270ab562 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
 ```yml
 dependencies:  
-    parse_server_sdk: ^1.0.17
+    parse_server_sdk: ^1.0.18
 ```
 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.
 
diff --git a/lib/src/base/parse_constants.dart b/lib/src/base/parse_constants.dart
index b746b5569..530ab6dd6 100644
--- a/lib/src/base/parse_constants.dart
+++ b/lib/src/base/parse_constants.dart
@@ -1,7 +1,7 @@
 part of flutter_parse_sdk;
 
 // Library
-const String keySdkVersion = '1.0.17';
+const String keySdkVersion = '1.0.18';
 const String keyLibraryName = 'Flutter Parse SDK';
 
 // End Points
diff --git a/lib/src/objects/parse_object.dart b/lib/src/objects/parse_object.dart
index 80f3ac00f..74d0b1936 100644
--- a/lib/src/objects/parse_object.dart
+++ b/lib/src/objects/parse_object.dart
@@ -89,7 +89,7 @@ class ParseObject extends ParseBase implements ParseCloneable {
     } else {
       try {
         final Uri url = getSanitisedUri(_client, '$_path/$objectId');
-        final String body = json.encode(toJson(forApiRQ: true));
+        final String body = json.encode(toJson());
         final Response result = await _client.put(url, body: body);
         return handleResponse<ParseObject>(
             this, result, ParseApiRQ.save, _debug, className);
diff --git a/pubspec.yaml b/pubspec.yaml
index af7d53b12..c084f0a07 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.16
+version: 1.0.18
 homepage: https://github.com/phillwiggins/flutter_parse_sdk
 author: PhillWiggins <phill.wiggins@gmail.com>