Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-typerep-map for openSUSE:Factory
checked in at 2022-02-23 16:26:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-typerep-map (Old)
and /work/SRC/openSUSE:Factory/.ghc-typerep-map.new.1958 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-typerep-map"
Wed Feb 23 16:26:04 2022 rev:4 rq:956894 version:0.5.0.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-typerep-map/ghc-typerep-map.changes
2021-08-25 20:58:19.793151607 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-typerep-map.new.1958/ghc-typerep-map.changes
2022-02-23 16:26:51.159509694 +0100
@@ -1,0 +2,11 @@
+Tue Feb 15 14:10:26 UTC 2022 - Peter Simons <[email protected]>
+
+- Update typerep-map to version 0.5.0.0.
+ ## 0.5.0.0 ??? Feb 15, 2022
+
+ * [#117](https://github.com/kowainik/typerep-map/issues/117):
+ Support GHC-9.2
+ * [#112](https://github.com/kowainik/typerep-map/issues/112):
+ Change `TypeRepMap` parameter role to `representational`.
+
+-------------------------------------------------------------------
Old:
----
typerep-map-0.4.0.0.tar.gz
New:
----
typerep-map-0.5.0.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-typerep-map.spec ++++++
--- /var/tmp/diff_new_pack.y6nPer/_old 2022-02-23 16:26:51.643509712 +0100
+++ /var/tmp/diff_new_pack.y6nPer/_new 2022-02-23 16:26:51.651509712 +0100
@@ -1,7 +1,7 @@
#
# spec file for package ghc-typerep-map
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
%global has_internal_sub_libraries 1
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.4.0.0
+Version: 0.5.0.0
Release: 0
Summary: Efficient implementation of a dependent map with types as keys
License: MPL-2.0
++++++ typerep-map-0.4.0.0.tar.gz -> typerep-map-0.5.0.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typerep-map-0.4.0.0/CHANGELOG.md
new/typerep-map-0.5.0.0/CHANGELOG.md
--- old/typerep-map-0.4.0.0/CHANGELOG.md 2001-09-09 03:46:40.000000000
+0200
+++ new/typerep-map-0.5.0.0/CHANGELOG.md 2001-09-09 03:46:40.000000000
+0200
@@ -3,6 +3,13 @@
`typerep-map` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].
+## 0.5.0.0 ??? Feb 15, 2022
+
+* [#117](https://github.com/kowainik/typerep-map/issues/117):
+ Support GHC-9.2
+* [#112](https://github.com/kowainik/typerep-map/issues/112):
+ Change `TypeRepMap` parameter role to `representational`.
+
## 0.4.0.0 ??? Aug 3, 2021
* [#109](https://github.com/kowainik/typerep-map/issues/109):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typerep-map-0.4.0.0/src/Data/TMap.hs
new/typerep-map-0.5.0.0/src/Data/TMap.hs
--- old/typerep-map-0.4.0.0/src/Data/TMap.hs 2001-09-09 03:46:40.000000000
+0200
+++ new/typerep-map-0.5.0.0/src/Data/TMap.hs 2001-09-09 03:46:40.000000000
+0200
@@ -3,7 +3,7 @@
{- |
Module : Data.TMap
-Copyright : (c) 2017-2021 Kowainik
+Copyright : (c) 2017-2022 Kowainik
SPDX-License-Identifier : MPL-2.0
Maintainer : Kowainik <[email protected]>
Stability : Stable
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typerep-map-0.4.0.0/src/Data/TypeRepMap/Internal.hs
new/typerep-map-0.5.0.0/src/Data/TypeRepMap/Internal.hs
--- old/typerep-map-0.4.0.0/src/Data/TypeRepMap/Internal.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/typerep-map-0.5.0.0/src/Data/TypeRepMap/Internal.hs 2001-09-09
03:46:40.000000000 +0200
@@ -9,6 +9,7 @@
{-# LANGUAGE MagicHash #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE Rank2Types #-}
+{-# LANGUAGE RoleAnnotations #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeInType #-}
{-# LANGUAGE ViewPatterns #-}
@@ -21,7 +22,7 @@
{- |
Module : Data.TypeRepMap.Internal
-Copyright : (c) 2017-2021 Kowainik
+Copyright : (c) 2017-2022 Kowainik
SPDX-License-Identifier : MPL-2.0
Maintainer : Kowainik <[email protected]>
Stability : Stable
@@ -92,6 +93,7 @@
'lookup' significantly more efficient.
-}
+type role TypeRepMap representational
data TypeRepMap (f :: k -> Type) =
TypeRepMap
{ fingerprintAs :: {-# UNPACK #-} !(PrimArray Word64) -- ^ first
components of key fingerprints
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typerep-map-0.4.0.0/src/Data/TypeRepMap.hs
new/typerep-map-0.5.0.0/src/Data/TypeRepMap.hs
--- old/typerep-map-0.4.0.0/src/Data/TypeRepMap.hs 2001-09-09
03:46:40.000000000 +0200
+++ new/typerep-map-0.5.0.0/src/Data/TypeRepMap.hs 2001-09-09
03:46:40.000000000 +0200
@@ -2,7 +2,7 @@
{- |
Module : Data.TypeRepMap
-Copyright : (c) 2017-2021 Kowainik
+Copyright : (c) 2017-2022 Kowainik
SPDX-License-Identifier : MPL-2.0
Maintainer : Kowainik <[email protected]>
Stability : Stable
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typerep-map-0.4.0.0/typerep-map.cabal
new/typerep-map-0.5.0.0/typerep-map.cabal
--- old/typerep-map-0.4.0.0/typerep-map.cabal 2001-09-09 03:46:40.000000000
+0200
+++ new/typerep-map-0.5.0.0/typerep-map.cabal 2001-09-09 03:46:40.000000000
+0200
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: typerep-map
-version: 0.4.0.0
+version: 0.5.0.0
synopsis: Efficient implementation of a dependent map with types as
keys
description:
A dependent map from type representations to values of these types.
@@ -23,7 +23,7 @@
license-file: LICENSE
author: Veronika Romashkina, Vladislav Zavialov, Dmitrii Kovanikov
maintainer: Kowainik <[email protected]>
-copyright: 2017-2021 Kowainik
+copyright: 2017-2022 Kowainik
category: Data, Data Structures, Types
build-type: Simple
extra-doc-files: README.md
@@ -32,15 +32,16 @@
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
- , GHC == 8.10.5
- , GHC == 9.0.1
+ , GHC == 8.10.7
+ , GHC == 9.0.2
+ , GHC == 9.2.1
source-repository head
type: git
location: https://github.com/kowainik/typerep-map.git
common common-options
- build-depends: base >= 4.10 && < 4.16
+ build-depends: base >= 4.10 && < 4.17
default-language: Haskell2010
default-extensions: BangPatterns
@@ -72,7 +73,7 @@
Data.TypeRepMap
Data.TypeRepMap.Internal
- build-depends: ghc-prim >= 0.5.1.1 && < 0.8
+ build-depends: ghc-prim >= 0.5.1.1 && < 0.9
, primitive ^>= 0.7.0
, deepseq ^>= 1.4
@@ -100,8 +101,8 @@
, Test.TypeRep.VectorOpt
build-depends: ghc-typelits-knownnat >= 0.4.2 && < 0.8
- , hedgehog ^>= 1.0
- , hspec >= 2.7.1 && < 2.9
+ , hedgehog >= 1.0 && < 1.2
+ , hspec >= 2.7.1 && < 2.10
, hspec-hedgehog ^>= 0.0.1
, typerep-map
, typerep-extra-impls