Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-StateVar for openSUSE:Factory 
checked in at 2021-08-25 20:56:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-StateVar (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-StateVar.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-StateVar"

Wed Aug 25 20:56:41 2021 rev:18 rq:912586 version:1.2.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-StateVar/ghc-StateVar.changes        
2021-01-08 17:39:52.340982112 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-StateVar.new.1899/ghc-StateVar.changes      
2021-08-25 20:57:24.385224349 +0200
@@ -1,0 +2,8 @@
+Tue Jul 27 07:52:09 UTC 2021 - [email protected]
+
+- Update StateVar to version 1.2.2.
+  1.2.2
+  -----
+  * Relaxed upper version bound for `transformers`.
+
+-------------------------------------------------------------------

Old:
----
  StateVar-1.2.1.tar.gz

New:
----
  StateVar-1.2.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-StateVar.spec ++++++
--- /var/tmp/diff_new_pack.FZ6uEV/_old  2021-08-25 20:57:24.889223687 +0200
+++ /var/tmp/diff_new_pack.FZ6uEV/_new  2021-08-25 20:57:24.893223682 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-StateVar
 #
-# 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
@@ -18,7 +18,7 @@
 
 %global pkg_name StateVar
 Name:           ghc-%{pkg_name}
-Version:        1.2.1
+Version:        1.2.2
 Release:        0
 Summary:        State variables
 License:        BSD-3-Clause

++++++ StateVar-1.2.1.tar.gz -> StateVar-1.2.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.2.1/CHANGELOG.md 
new/StateVar-1.2.2/CHANGELOG.md
--- old/StateVar-1.2.1/CHANGELOG.md     2020-12-29 09:42:53.000000000 +0100
+++ new/StateVar-1.2.2/CHANGELOG.md     2021-07-25 17:47:38.000000000 +0200
@@ -1,3 +1,7 @@
+1.2.2
+-----
+* Relaxed upper version bound for `transformers`.
+
 1.2.1
 -----
 * Explicitly mark `Data.StateVar` as Safe (or Trustworthy for GHC before 7.10).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.2.1/LICENSE new/StateVar-1.2.2/LICENSE
--- old/StateVar-1.2.1/LICENSE  2018-03-21 14:31:18.000000000 +0100
+++ new/StateVar-1.2.2/LICENSE  2021-07-25 17:51:19.000000000 +0200
@@ -1,5 +1,5 @@
 Copyright (c) 2014-2015, Edward Kmett
-Copyright (c) 2009-2018, Sven Panne
+Copyright (c) 2009-2021, Sven Panne
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.2.1/StateVar.cabal 
new/StateVar-1.2.2/StateVar.cabal
--- old/StateVar-1.2.1/StateVar.cabal   2020-12-29 09:42:53.000000000 +0100
+++ new/StateVar-1.2.2/StateVar.cabal   2021-07-25 17:48:26.000000000 +0200
@@ -1,12 +1,12 @@
 name: StateVar
-version: 1.2.1
+version: 1.2.2
 synopsis: State variables
 description:
   This package contains state variables, which are references in the IO monad,
   like IORefs or parts of the OpenGL state.
 homepage: https://github.com/haskell-opengl/StateVar
 bug-reports: https://github.com/haskell-opengl/StateVar/issues
-copyright: Copyright (C) 2014-2015 Edward A. Kmett, 2009-2018 Sven Panne
+copyright: Copyright (C) 2014-2015 Edward A. Kmett, 2009-2021 Sven Panne
 license: BSD3
 license-file: LICENSE
 author: Sven Panne and Edward Kmett
@@ -26,6 +26,8 @@
   GHC == 8.6.5
   GHC == 8.8.4
   GHC == 8.10.3
+  GHC == 8.10.4
+  GHC == 9.0.1
 cabal-version: >= 1.10
 extra-source-files:
   README.md
@@ -38,7 +40,7 @@
   build-depends:
     base         >= 4   && < 5,
     stm          >= 2.3.0.1 && < 2.6,
-    transformers >= 0.3 && < 0.6
+    transformers >= 0.3 && < 0.7
 
   default-language: Haskell2010
   other-extensions:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.2.1/src/Data/StateVar.hs 
new/StateVar-1.2.2/src/Data/StateVar.hs
--- old/StateVar-1.2.1/src/Data/StateVar.hs     2020-12-29 15:52:28.000000000 
+0100
+++ new/StateVar-1.2.2/src/Data/StateVar.hs     2021-07-25 17:51:47.000000000 
+0200
@@ -16,7 +16,7 @@
 
--------------------------------------------------------------------------------
 -- |
 -- Module      :  Data.StateVar
--- Copyright   :  (c) Edward Kmett 2014-2019, Sven Panne 2009-2018
+-- Copyright   :  (c) Edward Kmett 2014-2019, Sven Panne 2009-2021
 -- License     :  BSD3
 -- 
 -- Maintainer  :  Sven Panne <[email protected]>

Reply via email to