diff --git a/CHANGELOG.md b/CHANGELOG.md index eb561f15..70e57675 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.0+14 + +* Fix analyzer warning. + ## 0.2.0+13 * Remove crypto dependency and upgrade dart dependency to >=1.13 since diff --git a/pubspec.yaml b/pubspec.yaml index e5a79077..29df7fb3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: gcloud -version: 0.2.0+13 +version: 0.2.0+14 author: Dart Team description: Dart gcloud APIs homepage: https://github.com/dart-lang/gcloud diff --git a/test/db/properties_test.dart b/test/db/properties_test.dart index d0ae074f..eed59e9e 100644 --- a/test/db/properties_test.dart +++ b/test/db/properties_test.dart @@ -238,4 +238,5 @@ class ModelDBMock implements ModelDB { datastore.Entity toDatastoreEntity(Model model) => null; String fieldNameToPropertyName(String kind, String fieldName) => null; String kindName(Type type) => null; + Object toDatastoreValue(String kind, String fieldName, Object value) => null; }