From 19ed6fc2401fbc0b8b297bbd15649bd02935a81a Mon Sep 17 00:00:00 2001 From: adithyaov Date: Sat, 4 Dec 2021 01:16:17 +0530 Subject: [PATCH] Bump the patch version and update the relevant files --- bin/mk-hscope.sh | 2 +- bin/test.sh | 2 +- configure | 18 +++++++++--------- configure.ac | 2 +- docs/CONTRIBUTORS.md | 5 +++++ docs/getting-started.md | 2 +- streamly.cabal | 2 +- 7 files changed, 19 insertions(+), 14 deletions(-) diff --git a/bin/mk-hscope.sh b/bin/mk-hscope.sh index 1d6f118b8..4688d50d3 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 +STREAMLY_VERSION=0.8.1.1 case `uname` in Darwin) SYSTEM=x86_64-osx;; diff --git a/bin/test.sh b/bin/test.sh index 51ba47376..bdbc38ff4 100755 --- a/bin/test.sh +++ b/bin/test.sh @@ -2,7 +2,7 @@ SCRIPT_DIR=$(dirname $0) -STREAMLY_VERSION=0.8.1 +STREAMLY_VERSION=0.8.1.1 BENCH_REPORT_DIR=benchmark/bench-report source $SCRIPT_DIR/targets.sh diff --git a/configure b/configure index 5b467e93d..f39a68a53 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for streamly 0.8.1. +# Generated by GNU Autoconf 2.71 for streamly 0.8.1.1. # # Report bugs to . # @@ -610,8 +610,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='streamly' PACKAGE_TARNAME='streamly' -PACKAGE_VERSION='0.8.1' -PACKAGE_STRING='streamly 0.8.1' +PACKAGE_VERSION='0.8.1.1' +PACKAGE_STRING='streamly 0.8.1.1' PACKAGE_BUGREPORT='streamly@composewell.com' PACKAGE_URL='https://streamly.composewell.com' @@ -1256,7 +1256,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures streamly 0.8.1 to adapt to many kinds of systems. +\`configure' configures streamly 0.8.1.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1318,7 +1318,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of streamly 0.8.1:";; + short | recursive ) echo "Configuration of streamly 0.8.1.1:";; esac cat <<\_ACEOF @@ -1404,7 +1404,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -streamly configure 0.8.1 +streamly configure 0.8.1.1 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -1674,7 +1674,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by streamly $as_me 0.8.1, which was +It was created by streamly $as_me 0.8.1.1, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -4028,7 +4028,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by streamly $as_me 0.8.1, which was +This file was extended by streamly $as_me 0.8.1.1, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -4084,7 +4084,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -streamly config.status 0.8.1 +streamly config.status 0.8.1.1 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index cb0692ef3..9e6e73776 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ # See https://www.gnu.org/software/autoconf/manual/autoconf.html for help on # the macros used in this file. -AC_INIT([streamly], [0.8.1], [streamly@composewell.com], [streamly], [https://streamly.composewell.com]) +AC_INIT([streamly], [0.8.1.1], [streamly@composewell.com], [streamly], [https://streamly.composewell.com]) # To suppress "WARNING: unrecognized options: --with-compiler" AC_ARG_WITH([compiler], [GHC]) diff --git a/docs/CONTRIBUTORS.md b/docs/CONTRIBUTORS.md index 370b0223a..7774172dc 100644 --- a/docs/CONTRIBUTORS.md +++ b/docs/CONTRIBUTORS.md @@ -4,6 +4,11 @@ please see https://github.com/composewell/streamly/issues. Use `git shortlog -sn tag1...tag2` on the git repository to get a list of contributors between two repository tags. +## 0.8.1.1 + +* Harendra Kumar +* Julian Ospald + ## 0.8.1 * Harendra Kumar diff --git a/docs/getting-started.md b/docs/getting-started.md index 948e0e0dc..c0e735c41 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 +$ cabal repl --build-depends streamly==0.8.1.1 [1 of 1] Compiling Main ( Main.hs, interpreted ) Ok, modules loaded: Main. *Main> diff --git a/streamly.cabal b/streamly.cabal index 3e790c229..93cf7a35b 100644 --- a/streamly.cabal +++ b/streamly.cabal @@ -1,6 +1,6 @@ cabal-version: 2.2 name: streamly -version: 0.8.1 +version: 0.8.1.1 synopsis: Dataflow programming and declarative concurrency description: Browse the documentation at https://streamly.composewell.com.