packages feed

streamly 0.7.3.1 → 0.7.3.2

raw patch · 8 files changed

+35/−14 lines, 8 filesdep ~ghc-primdep ~primitive

Dependency ranges changed: ghc-prim, primitive

Files

configure view
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles.-# Generated by GNU Autoconf 2.71 for streamly 0.7.3.1.+# Generated by GNU Autoconf 2.71 for streamly 0.7.3.2. # # Report bugs to <streamly@composewell.com>. #@@ -610,8 +610,8 @@ # Identity of this package. PACKAGE_NAME='streamly' PACKAGE_TARNAME='streamly'-PACKAGE_VERSION='0.7.3.1'-PACKAGE_STRING='streamly 0.7.3.1'+PACKAGE_VERSION='0.7.3.2'+PACKAGE_STRING='streamly 0.7.3.2' PACKAGE_BUGREPORT='streamly@composewell.com' PACKAGE_URL='' @@ -1256,7 +1256,7 @@   # 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.7.3.1 to adapt to many kinds of systems.+\`configure' configures streamly 0.7.3.2 to adapt to many kinds of systems.  Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1318,7 +1318,7 @@  if test -n "$ac_init_help"; then   case $ac_init_help in-     short | recursive ) echo "Configuration of streamly 0.7.3.1:";;+     short | recursive ) echo "Configuration of streamly 0.7.3.2:";;    esac   cat <<\_ACEOF @@ -1403,7 +1403,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then   cat <<\_ACEOF-streamly configure 0.7.3.1+streamly configure 0.7.3.2 generated by GNU Autoconf 2.71  Copyright (C) 2021 Free Software Foundation, Inc.@@ -1621,7 +1621,7 @@ 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.7.3.1, which was+It was created by streamly $as_me 0.7.3.2, which was generated by GNU Autoconf 2.71.  Invocation command line was    $ $0$ac_configure_args_raw@@ -3831,7 +3831,7 @@ # 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.7.3.1, which was+This file was extended by streamly $as_me 0.7.3.2, which was generated by GNU Autoconf 2.71.  Invocation command line was    CONFIG_FILES    = $CONFIG_FILES@@ -3886,7 +3886,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\-streamly config.status 0.7.3.1+streamly config.status 0.7.3.2 configured by $0, generated by GNU Autoconf 2.71,   with options \\"\$ac_cs_config\\" 
configure.ac view
@@ -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.7.3.1], [streamly@composewell.com], [streamly])+AC_INIT([streamly], [0.7.3.2], [streamly@composewell.com], [streamly])  # To suppress "WARNING: unrecognized options: --with-compiler" AC_ARG_WITH([compiler], [GHC])
src/Streamly/Internal/Data/List.hs view
@@ -6,6 +6,10 @@ {-# LANGUAGE UndecidableInstances       #-} -- XXX {-# LANGUAGE ViewPatterns               #-} +#if MIN_VERSION_base(4,17,0)+{-# LANGUAGE TypeOperators             #-}+#endif+ -- | -- Module      : Streamly.Internal.Data.List -- Copyright   : (c) 2018 Composewell Technologies
src/Streamly/Internal/Data/SVar.hs view
@@ -940,8 +940,12 @@ -- exception handler. {-# INLINE rawForkIO #-} rawForkIO :: IO () -> IO ThreadId-rawForkIO action = IO $ \ s ->-   case fork# action s of (# s1, tid #) -> (# s1, ThreadId tid #)+#if MIN_VERSION_base(4,17,0)+rawForkIO (IO action) =+#else+rawForkIO action =+#endif+   IO $ \ s -> case fork# action s of (# s1, tid #) -> (# s1, ThreadId tid #)  {-# INLINE doFork #-} doFork :: MonadBaseControl IO m
src/Streamly/Internal/Data/Stream/Serial.hs view
@@ -8,6 +8,10 @@ {-# LANGUAGE TypeFamilies              #-} {-# LANGUAGE UndecidableInstances      #-} -- XXX +#if MIN_VERSION_base(4,17,0)+{-# LANGUAGE TypeOperators             #-}+#endif+ -- | -- Module      : Streamly.Internal.Data.Stream.Serial -- Copyright   : (c) 2017 Harendra Kumar
src/Streamly/Internal/Data/Stream/Zip.hs view
@@ -8,6 +8,10 @@ {-# LANGUAGE TypeFamilies              #-} {-# LANGUAGE UndecidableInstances      #-} -- XXX +#if MIN_VERSION_base(4,17,0)+{-# LANGUAGE TypeOperators             #-}+#endif+ -- | -- Module      : Streamly.Internal.Data.Stream.Zip -- Copyright   : (c) 2017 Harendra Kumar
src/Streamly/Internal/Memory/Array/Types.hs view
@@ -7,6 +7,11 @@ {-# LANGUAGE TypeFamilies              #-} {-# LANGUAGE UnboxedTuples             #-} {-# LANGUAGE FlexibleContexts          #-}++#if MIN_VERSION_base(4,17,0)+{-# LANGUAGE TypeOperators             #-}+#endif+ #include "inline.hs"  -- |
streamly.cabal view
@@ -1,6 +1,6 @@ cabal-version:      2.2 name:               streamly-version:            0.7.3.1+version:            0.7.3.2 synopsis:           Beautiful Streaming, Concurrent and Reactive Composition description:   Streamly is a framework for writing programs in a high level, declarative@@ -384,7 +384,7 @@                      , deepseq           >= 1.4.1 && < 1.5                      , directory         >= 1.2.2 && < 1.4                      , exceptions        >= 0.8   && < 0.11-                     , ghc-prim          >= 0.2   && < 0.9+                     , ghc-prim          >= 0.2   && < 0.10                      , mtl               >= 2.2   && < 3                      , primitive         >= 0.5.4 && < 0.8                      , transformers      >= 0.4   && < 0.6