Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-rio for openSUSE:Factory checked in at 2021-02-16 22:37:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-rio (Old) and /work/SRC/openSUSE:Factory/.ghc-rio.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-rio" Tue Feb 16 22:37:36 2021 rev:18 rq:870461 version:0.1.20.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-rio/ghc-rio.changes 2020-12-22 11:45:35.413820567 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-rio.new.28504/ghc-rio.changes 2021-02-16 22:45:44.910366384 +0100 @@ -1,0 +2,8 @@ +Mon Jan 25 10:07:59 UTC 2021 - [email protected] + +- Update rio to version 0.1.20.0. + ## 0.1.20.0 + + * Export `UnliftIO.QSem` and `UnliftIO.QSemN` in `RIO` + +------------------------------------------------------------------- Old: ---- rio-0.1.19.0.tar.gz New: ---- rio-0.1.20.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-rio.spec ++++++ --- /var/tmp/diff_new_pack.0UcES1/_old 2021-02-16 22:45:45.782367531 +0100 +++ /var/tmp/diff_new_pack.0UcES1/_new 2021-02-16 22:45:45.786367536 +0100 @@ -1,7 +1,7 @@ # # spec file for package ghc-rio # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %global pkg_name rio %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.19.0 +Version: 0.1.20.0 Release: 0 Summary: A standard library for Haskell License: MIT ++++++ rio-0.1.19.0.tar.gz -> rio-0.1.20.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rio-0.1.19.0/ChangeLog.md new/rio-0.1.20.0/ChangeLog.md --- old/rio-0.1.19.0/ChangeLog.md 2020-09-14 18:08:58.000000000 +0200 +++ new/rio-0.1.20.0/ChangeLog.md 2021-01-25 05:18:07.000000000 +0100 @@ -1,5 +1,9 @@ # Changelog for rio +## 0.1.20.0 + +* Export `UnliftIO.QSem` and `UnliftIO.QSemN` in `RIO` + ## 0.1.19.0 * Expose `fromLeft` and `fromRight` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rio-0.1.19.0/rio.cabal new/rio-0.1.20.0/rio.cabal --- old/rio-0.1.19.0/rio.cabal 2020-09-14 18:57:09.000000000 +0200 +++ new/rio-0.1.20.0/rio.cabal 2021-01-25 05:18:07.000000000 +0100 @@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack -- --- hash: 2b9ea9ee3e7bdfefbc63c62e72ff3ce7b348803d398dcc3e394879db5522fa1b +-- hash: f3c92fe72c8e7fd35fdebcde2b50c754eec24d9c4d5bc1bded6f7876503fb693 name: rio -version: 0.1.19.0 +version: 0.1.20.0 synopsis: A standard library for Haskell description: See README and Haddocks at <https://www.stackage.org/package/rio> category: Control @@ -110,7 +110,7 @@ , text , time , typed-process >=0.2.5.0 - , unliftio >=0.2.12 + , unliftio >=0.2.14 , unliftio-core , unordered-containers , vector @@ -160,7 +160,7 @@ , text , time , typed-process >=0.2.5.0 - , unliftio >=0.2.12 + , unliftio >=0.2.14 , unliftio-core , unordered-containers , vector diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rio-0.1.19.0/src/RIO.hs new/rio-0.1.20.0/src/RIO.hs --- old/rio-0.1.19.0/src/RIO.hs 2020-08-05 05:24:55.000000000 +0200 +++ new/rio-0.1.20.0/src/RIO.hs 2021-01-25 05:18:07.000000000 +0100 @@ -79,6 +79,10 @@ , module UnliftIO.IORef -- ** MVar , module UnliftIO.MVar + -- ** QSem + , module UnliftIO.QSem + -- ** QSemN + , module UnliftIO.QSemN -- ** Memoize , module UnliftIO.Memoize -- ** Deque @@ -113,6 +117,8 @@ import UnliftIO.IORef import UnliftIO.Memoize import UnliftIO.MVar +import UnliftIO.QSem +import UnliftIO.QSemN import UnliftIO.STM import UnliftIO.Temporary import UnliftIO.Timeout
