From e5d1aedc888cc9aa943fa1d2076df11779c2b785 Mon Sep 17 00:00:00 2001 From: Alexey Date: Mon, 11 Sep 2023 19:17:46 -0700 Subject: [PATCH] Release 6.0.1 (#136) --- CHANGELOG.md | 5 +++++ lib/document.dart | 1 + pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f882fd3..0707da2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. 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). +## [6.0.1] - 2023-09-11 +### Fixed +- `NewRelationship` was not exported + ## [6.0.0] - 2023-09-07 ### Added - Partial support for JSON:API v1.1 @@ -238,6 +242,7 @@ the Document model. ### Added - Client: fetch resources, collections, related resources and relationships +[6.0.1]: https://github.com/f3ath/json-api-dart/compare/6.0.0...6.0.1 [6.0.0]: https://github.com/f3ath/json-api-dart/compare/5.4.0...6.0.0 [5.4.0]: https://github.com/f3ath/json-api-dart/compare/5.3.0...5.4.0 [5.3.0]: https://github.com/f3ath/json-api-dart/compare/5.2.0...5.3.0 diff --git a/lib/document.dart b/lib/document.dart index 2618a54..04efafb 100644 --- a/lib/document.dart +++ b/lib/document.dart @@ -5,6 +5,7 @@ export 'package:json_api/src/document/error_object.dart'; export 'package:json_api/src/document/inbound_document.dart'; export 'package:json_api/src/document/link.dart'; export 'package:json_api/src/document/new_identifier.dart'; +export 'package:json_api/src/document/new_relationship.dart'; export 'package:json_api/src/document/new_resource.dart'; export 'package:json_api/src/document/new_to_many.dart'; export 'package:json_api/src/document/new_to_one.dart'; diff --git a/pubspec.yaml b/pubspec.yaml index a3a3cde..f93f095 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: json_api -version: 6.0.0 +version: 6.0.1 homepage: https://github.com/f3ath/json-api-dart description: A framework-agnostic implementations of JSON:API Client and Server. Supports JSON:API v1.0 (https://jsonapi.org) environment: