From bfeee8a61534a43ab9752ca1d9220cb728f4d883 Mon Sep 17 00:00:00 2001 From: Adithya Kumar Date: Wed, 8 Mar 2023 00:24:36 +0530 Subject: [PATCH] Fix streamly versions in the doc --- bin/mk-hscope.sh | 2 +- bin/run-repl-quick.sh | 2 +- docs/User/Tutorials/setup-and-usage.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/mk-hscope.sh b/bin/mk-hscope.sh index 11e51f67d..a1e40e30d 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.2 +STREAMLY_VERSION=0.9.0 case `uname` in Darwin) SYSTEM=x86_64-osx;; diff --git a/bin/run-repl-quick.sh b/bin/run-repl-quick.sh index b517d4d74..db90e8ff0 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.2 +STREAMLY_VERSION=0.9.0 BENCH_REPORT_DIR=benchmark/bench-report source $SCRIPT_DIR/targets.sh diff --git a/docs/User/Tutorials/setup-and-usage.md b/docs/User/Tutorials/setup-and-usage.md index 847229826..112391f60 100644 --- a/docs/User/Tutorials/setup-and-usage.md +++ b/docs/User/Tutorials/setup-and-usage.md @@ -92,7 +92,7 @@ You can also ask `cabal` to use a specific version of `streamly-core` by adding a version number constraint to the `--build-depends` flag: ``` -$ cabal repl --build-depends streamly-core==0.8.3 +$ cabal repl --build-depends streamly-core==0.1.0 ... ghci> ```