From 3ad589a611f51e6fae614a4591a1818b47a067e4 Mon Sep 17 00:00:00 2001 From: jenow Date: Mon, 15 Feb 2021 13:13:02 +0100 Subject: [PATCH 1/4] export http --- lib/kuzzle.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/kuzzle.dart b/lib/kuzzle.dart index 5a734b39..4f4abee3 100644 --- a/lib/kuzzle.dart +++ b/lib/kuzzle.dart @@ -17,6 +17,7 @@ export 'src/kuzzle/response.dart'; export 'src/kuzzle/role.dart'; export 'src/kuzzle/user.dart'; export 'src/protocols/abstract.dart'; +export 'src/protocols/http.dart'; export 'src/protocols/websocket.dart'; export 'src/search_result/documents.dart'; export 'src/search_result/profiles.dart'; From c2e3d58f696acae292b25e6200a1357b43faa1b8 Mon Sep 17 00:00:00 2001 From: jenow Date: Mon, 15 Feb 2021 13:16:33 +0100 Subject: [PATCH 2/4] remove import from src --- .ci/doc/templates/without-ctor.tpl.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/.ci/doc/templates/without-ctor.tpl.dart b/.ci/doc/templates/without-ctor.tpl.dart index 8b8961ea..23ad4254 100644 --- a/.ci/doc/templates/without-ctor.tpl.dart +++ b/.ci/doc/templates/without-ctor.tpl.dart @@ -1,5 +1,4 @@ import 'package:kuzzle/kuzzle.dart'; -import 'package:kuzzle/src/protocols/http.dart'; void main() { [snippet-code] From bb80780d751357e86ad136f895b6347f93f57742 Mon Sep 17 00:00:00 2001 From: jenow Date: Mon, 15 Feb 2021 15:16:35 +0100 Subject: [PATCH 3/4] Release 2.2.1 --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 54ca0d4b..e5423618 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: kuzzle -version: 2.2.0 +version: 2.2.1 description: A library to interact with kuzzle API. A backend software, self-hostable and ready to use to power modern cross-platform apps. homepage: https://github.com/kuzzleio/sdk-dart From 0d22ae00bb5490f90f3a0ac0d2b2885b4e53a7f2 Mon Sep 17 00:00:00 2001 From: jenow Date: Mon, 15 Feb 2021 15:19:56 +0100 Subject: [PATCH 4/4] update 2.2.1 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc63d896..4287160b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [2.2.1] + +- Bugfix: Export HttpProtocol class + ## [2.2.0] - Add HTTP Protocol