commit ghc-hedis for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-hedis for openSUSE:Factory checked in at 2017-02-22 13:53:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-hedis (Old) and /work/SRC/openSUSE:Factory/.ghc-hedis.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "ghc-hedis" Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-hedis/ghc-hedis.changes 2017-01-12 15:49:40.559707601 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-hedis.new/ghc-hedis.changes 2017-02-22 13:53:26.525106098 +0100 @@ -1,0 +2,5 @@ +Mon Jan 30 09:35:03 UTC 2017 - psimons@suse.com + +- Update to version 0.9.7 with cabal2obs. + +------------------------------------------------------------------- Old: ---- hedis-0.9.5.tar.gz New: ---- hedis-0.9.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-hedis.spec ++++++ --- /var/tmp/diff_new_pack.SzWoKX/_old 2017-02-22 13:53:27.005037803 +0100 +++ /var/tmp/diff_new_pack.SzWoKX/_new 2017-02-22 13:53:27.005037803 +0100 @@ -1,7 +1,7 @@ # # spec file for package ghc-hedis # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # 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 hedis %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.9.5 +Version: 0.9.7 Release: 0 Summary: Client library for the Redis datastore: supports full command set, pipelining License: BSD-3-Clause ++++++ hedis-0.9.5.tar.gz -> hedis-0.9.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hedis-0.9.5/CHANGELOG new/hedis-0.9.7/CHANGELOG --- old/hedis-0.9.5/CHANGELOG 2016-08-07 13:27:59.000000000 +0200 +++ new/hedis-0.9.7/CHANGELOG 2017-01-28 16:03:00.000000000 +0100 @@ -1,5 +1,9 @@ # Changelog for Hedis +## 0.9.7 + +Expose returnDecode method of RedisCtx (see issue #83) + ## 0.9.2 * Added multithreaded pub/sub message processing (see PR #77) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hedis-0.9.5/hedis.cabal new/hedis-0.9.7/hedis.cabal --- old/hedis-0.9.5/hedis.cabal 2016-12-08 18:40:40.000000000 +0100 +++ new/hedis-0.9.7/hedis.cabal 2017-01-28 16:02:24.000000000 +0100 @@ -1,5 +1,5 @@ name: hedis -version: 0.9.5 +version: 0.9.7 synopsis: Client library for the Redis datastore: supports full command set, pipelining. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hedis-0.9.5/src/Database/Redis/Commands.hs new/hedis-0.9.7/src/Database/Redis/Commands.hs --- old/hedis-0.9.5/src/Database/Redis/Commands.hs 2016-10-05 22:14:41.000000000 +0200 +++ new/hedis-0.9.7/src/Database/Redis/Commands.hs 2017-01-25 22:06:21.000000000 +0100 @@ -213,7 +213,7 @@ mset, -- |Set multiple keys to multiple values (<http://redis.io/commands/mset>). Since Redis 1.0.1 msetnx, -- |Set multiple keys to multiple values, only if none of the keys exist (<http://redis.io/commands/msetnx>). Since Redis 1.0.1 psetex, -- |Set the value and expiration in milliseconds of a key (<http://redis.io/commands/psetex>). Since Redis 2.6.0 -Condition, +Condition(..), SetOpts(..), set, -- |Set the string value of a key (<http://redis.io/commands/set>). The Redis command @SET@ is split up into 'set', 'setOpts'. Since Redis 1.0.0 setOpts, -- |Set the string value of a key (<http://redis.io/commands/set>). The Redis command @SET@ is split up into 'set', 'setOpts'. Since Redis 1.0.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hedis-0.9.5/src/Database/Redis/Core.hs new/hedis-0.9.7/src/Database/Redis/Core.hs --- old/hedis-0.9.5/src/Database/Redis/Core.hs 2016-10-05 22:14:41.000000000 +0200 +++ new/hedis-0.9.7/src/Database/Redis/Core.hs 2017-01-28 15:32:38.000000000 +0100 @@ -41,7 +41,7 @@ data RedisEnv = Env { envConn :: PP.Connection, envLastReply :: IORef Reply } -- |This class captures the following behaviour: In a context @m@, a command --- will return it's result wrapped in a \"container\" of type @f@. +-- will return its result wrapped in a \"container\" of type @f@. -- -- Please refer to the Command Type Signatures section of this page for more -- information. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hedis-0.9.5/src/Database/Redis.hs new/hedis-0.9.7/src/Database/Redis.hs --- old/hedis-0.9.5/src/Database/Redis.hs 2016-10-05 22:14:41.000000000 +0200 +++ new/hedis-0.9.7/src/Database/Redis.hs 2017-01-28 16:01:07.000000000 +0100 @@ -139,7 +139,7 @@ -- * The Redis Monad Redis(), runRedis, unRedis, reRedis, - RedisCtx(), MonadRedis(..), + RedisCtx(..), MonadRedis(..), -- * Connection Connection, connect, checkedConnect,
participants (1)
-
root@hilbertn.suse.de