From 8d133e8478c702ee9c0245102646139fe974fc47 Mon Sep 17 00:00:00 2001 From: Luka Giorgadze Date: Wed, 3 May 2023 22:58:09 +0400 Subject: [PATCH] bump and release v0.4.4 --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- pubspec.yaml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a1078..6b2b66c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,14 @@ Subsequently, the date entry follows **YYYY-MM-DD** format in accordance with th This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --- +## [v0.4.4] (2023-05-03) +- **Updated** + - Fix: remove unused import dart:ffi +## [v0.4.3] (2023-05-01) +- **Add** + - Response like Protocol Buffer will have byte response body. Add support for mock response of byte data. + - unit tests for RequestHandler class. #146 + ## [v0.4.2] (2023-02-15) - **Updated** diff --git a/README.md b/README.md index b3be5ca..69cae0b 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Add this to your package's `pubspec.yaml` file: ```yaml dev_dependencies: - http_mock_adapter: ^0.4.2 + http_mock_adapter: ^0.4.4 ``` #### Install it diff --git a/pubspec.yaml b/pubspec.yaml index cb81754..51f6da8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: http_mock_adapter description: A simple to use mocking package for Dio intended to be used in tests. It provides various types and methods to declaratively mock request-response communication. -version: 0.4.2 +version: 0.4.4 homepage: https://github.com/lomsa-dev/http-mock-adapter repository: https://github.com/lomsa-dev/http-mock-adapter issue_tracker: https://github.com/lomsa-dev/http-mock-adapter/issues