From 6f1b546b35d722b40ab1ba22d278e848c9a5d708 Mon Sep 17 00:00:00 2001 From: Matthias Beerens <3512339+Matthiee@users.noreply.github.com> Date: Sun, 7 Jul 2024 19:21:13 +0200 Subject: [PATCH] Bump `0.3.1` (#18) --- CHANGELOG.md | 6 ++++++ pubspec.yaml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ccde5a..04d5f31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.3.1 + +- Avoid concurrent modification errors (#14) +- Remove empty event handlers assert (#15) +- Fix unhandled exception when using multiple concrete pipelines (#17) + ## 0.3.0 - Reworked `registerFactory` methods used on `RequestManager`, `EventManager` and `PipelineConfigurator` to be extension methods (#9) diff --git a/pubspec.yaml b/pubspec.yaml index 5369254..a3a9c0f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: dart_mediator description: > A simple yet highly configurable Mediator implementation that allows sending requests and publishing events. -version: 0.3.0 +version: 0.3.1 repository: https://github.com/MatthiWare/mediator.dart issue_tracker: https://github.com/MatthiWare/mediator.dart/issues @@ -17,6 +17,6 @@ dependencies: meta: ^1.9.0 dev_dependencies: - lints: ">=3.0.0 <5.0.0" + lints: '>=3.0.0 <5.0.0' test: ^1.24.9 mocktail: ^1.0.1