From b77d74db797464c300f90471d2e76c6935845732 Mon Sep 17 00:00:00 2001 From: Alexey Karapetov Date: Thu, 21 Mar 2019 01:35:46 -0700 Subject: [PATCH] Updated readme and changelog --- CHANGELOG.md | 5 ++++- README.md | 35 ++++++++++++++--------------------- pubspec.yaml | 2 +- 3 files changed, 19 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8216d16..7c92931 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.5.0] - 2019-03-21 ### Changed - More BC-breaking changes in the Server @@ -45,7 +47,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Client: fetch resources, collections, related resources and relationships -[Unreleased]: https://github.com/f3ath/json-api-dart/compare/0.4.0...HEAD +[Unreleased]: https://github.com/f3ath/json-api-dart/compare/0.5.0...HEAD +[0.5.0]: https://github.com/f3ath/json-api-dart/compare/0.4.0...0.5.0 [0.4.0]: https://github.com/f3ath/json-api-dart/compare/0.3.0...0.4.0 [0.3.0]: https://github.com/f3ath/json-api-dart/compare/0.2.0...0.3.0 [0.2.0]: https://github.com/f3ath/json-api-dart/compare/0.1.0...0.2.0 diff --git a/README.md b/README.md index 8d862fc..cea0f56 100644 --- a/README.md +++ b/README.md @@ -4,27 +4,20 @@ a Client (VM, Flutter, Web), and a Server (VM only). ## Supported features -- [x] Fetching single resources and resource collections -- [x] Collection pagination -- [x] Fetching relationships and related resources and collections -- [x] Fetching single resources -- [x] Creating resources -- [x] Deleting resources -- [x] Updating resource's attributes -- [x] Updating resource's relationships -- [x] Updating relationships -- [x] Compound documents -- [x] Related collection pagination -- [x] Asynchronous processing - -- [ ] Support `meta` members -- [ ] Support `jsonapi` members -- [ ] Structural Validation including compound documents and sparse fieldsets -- [ ] Naming Validation -- [ ] Meaningful parsing exceptions -- [ ] JSON:API v1.1 features - -### Usage +- Fetching single resources and resource collections +- Collection pagination +- Fetching relationships and related resources and collections +- Fetching single resources +- Creating resources +- Deleting resources +- Updating resource's attributes +- Updating resource's relationships +- Updating relationships +- Compound documents +- Related collection pagination +- Asynchronous processing + +## Usage In the VM: ```dart import 'package:json_api/client.dart'; diff --git a/pubspec.yaml b/pubspec.yaml index c8457d9..34b6a6b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ author: "Alexey Karapetov " description: "JSON:API v1.0 (http://jsonapi.org) Document, Client, and Server" homepage: "https://github.com/f3ath/json-api-dart" name: "json_api" -version: "0.4.0" +version: "0.5.0" dependencies: collection: "^1.14.11" http: "^0.12.0"