From 14c28943210fe61d371a6432d46a81a32a85b474 Mon Sep 17 00:00:00 2001 From: Adithya Kumar Date: Tue, 1 Mar 2022 23:42:52 +0530 Subject: [PATCH] Update the streamly version in all the required files --- bin/mk-hscope.sh | 2 +- bin/run-repl-quick.sh | 2 +- bin/test.sh | 2 +- docs/getting-started.md | 2 +- docs/streamly-vs-async.md | 2 +- streamly.cabal | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/mk-hscope.sh b/bin/mk-hscope.sh index 4688d50d3..11e51f67d 100755 --- a/bin/mk-hscope.sh +++ b/bin/mk-hscope.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash GHC_VERSION=8.10.4 -STREAMLY_VERSION=0.8.1.1 +STREAMLY_VERSION=0.8.2 case `uname` in Darwin) SYSTEM=x86_64-osx;; diff --git a/bin/run-repl-quick.sh b/bin/run-repl-quick.sh index c1ed05949..b517d4d74 100755 --- a/bin/run-repl-quick.sh +++ b/bin/run-repl-quick.sh @@ -13,7 +13,7 @@ set -e SCRIPT_DIR=$(dirname $0) -STREAMLY_VERSION=0.8.1.1 +STREAMLY_VERSION=0.8.2 BENCH_REPORT_DIR=benchmark/bench-report source $SCRIPT_DIR/targets.sh diff --git a/bin/test.sh b/bin/test.sh index bdbc38ff4..38714b869 100755 --- a/bin/test.sh +++ b/bin/test.sh @@ -2,7 +2,7 @@ SCRIPT_DIR=$(dirname $0) -STREAMLY_VERSION=0.8.1.1 +STREAMLY_VERSION=0.8.2 BENCH_REPORT_DIR=benchmark/bench-report source $SCRIPT_DIR/targets.sh diff --git a/docs/getting-started.md b/docs/getting-started.md index 5d06f1f72..55fd805ac 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -204,7 +204,7 @@ You can also ask `cabal` to use a specific version of `streamly` by adding a version number constraint to the `--build-depends` flag: ``` -$ cabal repl --build-depends streamly==0.8.1.1 +$ cabal repl --build-depends streamly==0.8.2 [1 of 1] Compiling Main ( Main.hs, interpreted ) Ok, modules loaded: Main. *Main> diff --git a/docs/streamly-vs-async.md b/docs/streamly-vs-async.md index d1f46a776..78d8dc513 100644 --- a/docs/streamly-vs-async.md +++ b/docs/streamly-vs-async.md @@ -227,7 +227,7 @@ the concurrent actions are executed. See the [haddock documentation on hackage](https://hackage.haskell.org/package/streamly) and [a comprehensive tutorial -here](https://streamly.composewell.com/streamly-0.8.1/Tutorial.html). +here](https://streamly.composewell.com/streamly-0.8.2/Tutorial.html). ## References diff --git a/streamly.cabal b/streamly.cabal index ec4305e4e..440fad48d 100644 --- a/streamly.cabal +++ b/streamly.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 name: streamly -version: 0.8.1.1 +version: 0.8.2 synopsis: Dataflow programming and declarative concurrency description: Browse the documentation at https://streamly.composewell.com.