diff --git a/CHANGELOG.md b/CHANGELOG.md index e37147a..d669ac1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 1.1.3 - 2024-12-10 +### Changes +- Fixed flow execution order to consider custom interceptor changes [PR 36](https://github.com/htihospitality/re-dash/pull/36) + ## 1.1.2 - 2024-10-23 ### Changes - Fixed debug interceptor to return json encoded strings in response to `updateConnectionState` events from re-dash-inspector, as per [docs](https://api.flutter.dev/flutter/dart-developer/ServiceExtensionResponse/ServiceExtensionResponse.result.html) diff --git a/README.md b/README.md index 6f65650..de2b568 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Then, add the `re-dash` dependency #### from clojars ```edn -:deps {net.clojars.htihospitality/re-dash {:mvn/version "1.1.2"}} +:deps {net.clojars.htihospitality/re-dash {:mvn/version "1.1.3"}} ``` #### from a commit diff --git a/build.clj b/build.clj index e7246c0..eda4c8b 100644 --- a/build.clj +++ b/build.clj @@ -3,7 +3,7 @@ (:require [org.corfield.build :as bb])) (def lib 'net.clojars.htihospitality/re-dash) -(def version "1.1.2") +(def version "1.1.3") (defn test "Run the tests." [opts] (bb/run-tests opts)) diff --git a/pubspec.yaml b/pubspec.yaml index 79be219..90e7499 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: re_dash description: A ClojureDart framework for building user interfaces, leveraging Flutter -version: 1.1.2 +version: 1.1.3 environment: sdk: ^3.0.1