From 1b50578aee29a99f297b02c3d7a42421916c9284 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sun, 6 Nov 2022 23:15:24 +0100 Subject: [PATCH] Set version to 9.0.507 --- CHANGELOG.md | 4 ++-- doc/user-guide.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a6a36e..383cfdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Changelog # -## Version 9.0.xxx +## Version 9.0.507 -- Fix `promesa.core/wrap`; it now only wraps if the value is not a promise instance - Replace previously introduced `ConcurrencyLimiter` (java impl) with `Bulkhead` (100% clojure impl; cljs not suported but contributions welcome to port it to cljs if someone consider it can be useful). +- Fix `promesa.core/wrap`; it now only wraps if the value is not a promise instance - Add `promesa.exec/pmap`; a simplified `clojure.core/pmap` analogous function that allows use a user specified executor (thanks to the dynamic vars) (EXPERIMENTAL) diff --git a/doc/user-guide.md b/doc/user-guide.md index a33e02a..fe1d8da 100644 --- a/doc/user-guide.md +++ b/doc/user-guide.md @@ -10,11 +10,11 @@ Leiningen: deps.edn: ```clojure -funcool/promesa {:mvn/version "9.0.494"} +funcool/promesa {:mvn/version "9.0.507"} ``` ```clojure -[funcool/promesa "9.0.494"] +[funcool/promesa "9.0.507"] ``` ## Introduction