Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.0.15
Fixed 'full' bool issue

## 1.0.14
Corrected delete & path issue
Added Geo queries
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.14
parse_server_sdk: ^1.0.15
```
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.

Expand Down
2 changes: 1 addition & 1 deletion lib/src/base/parse_constants.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
part of flutter_parse_sdk;

// Library
const String keySdkVersion = '1.0.14';
const String keySdkVersion = '1.0.15';
const String keyLibraryName = 'Flutter Parse SDK';

// End Points
Expand Down
4 changes: 3 additions & 1 deletion lib/src/utils/parse_encoder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ dynamic dateTimeEncoder(dynamic item) {
}

/// Custom json encoder for types related to parse
dynamic parseEncode(dynamic value, {bool full = false}) {
dynamic parseEncode(dynamic value, {bool full}) {
full ??= false;

if (value is DateTime) return _encodeDate(value);

if (value is List) {
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: parse_server_sdk
description: Flutter plugin for Parse Server, (https://parseplatform.org), (https://back4app.com)
version: 1.0.14
version: 1.0.15
homepage: https://github.com/phillwiggins/flutter_parse_sdk
author: PhillWiggins <phill.wiggins@gmail.com>

Expand Down