Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-microlens-th for 
openSUSE:Factory checked in at 2023-06-22 23:25:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-microlens-th (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-microlens-th.new.15902 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-microlens-th"

Thu Jun 22 23:25:27 2023 rev:13 rq:1094437 version:0.4.3.13

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-microlens-th/ghc-microlens-th.changes        
2023-04-07 18:16:46.696701637 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-microlens-th.new.15902/ghc-microlens-th.changes 
    2023-06-22 23:25:53.677790642 +0200
@@ -1,0 +2,9 @@
+Sat Apr 29 17:23:54 UTC 2023 - Peter Simons <[email protected]>
+
+- Update microlens-th to version 0.4.3.13.
+  Upstream has edited the change log file since the last release in
+  a non-trivial way, i.e. they did more than just add a new entry
+  at the top. You can review the file at:
+  http://hackage.haskell.org/package/microlens-th-0.4.3.13/src/CHANGELOG.md
+
+-------------------------------------------------------------------

Old:
----
  microlens-th-0.4.3.12.tar.gz

New:
----
  microlens-th-0.4.3.13.tar.gz

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

Other differences:
------------------
++++++ ghc-microlens-th.spec ++++++
--- /var/tmp/diff_new_pack.42AiKA/_old  2023-06-22 23:25:54.217793396 +0200
+++ /var/tmp/diff_new_pack.42AiKA/_new  2023-06-22 23:25:54.221793417 +0200
@@ -20,7 +20,7 @@
 %global pkgver %{pkg_name}-%{version}
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.4.3.12
+Version:        0.4.3.13
 Release:        0
 Summary:        Automatic generation of record lenses for microlens
 License:        BSD-3-Clause

++++++ microlens-th-0.4.3.12.tar.gz -> microlens-th-0.4.3.13.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/microlens-th-0.4.3.12/CHANGELOG.md 
new/microlens-th-0.4.3.13/CHANGELOG.md
--- old/microlens-th-0.4.3.12/CHANGELOG.md      2001-09-09 03:46:40.000000000 
+0200
+++ new/microlens-th-0.4.3.13/CHANGELOG.md      2001-09-09 03:46:40.000000000 
+0200
@@ -1,10 +1,14 @@
+# 0.4.3.13
+
+* [#167](https://github.com/stevenfontanella/microlens/issues/167) Support 
th-abstraction 0.5.
+
 # 0.4.3.12
 
 * [#164](https://github.com/stevenfontanella/microlens/pull/164), 
[#165](https://github.com/stevenfontanella/microlens/issues/165) Support 
template-haskell 2.19 (and GHC 9.6 by extension).
 
 # 0.4.3.11
 
-* [#161](https://github.com/stevenfontanella/microlens/pull/161) Fix GHC 9.4 
warning for using `~` without TypeOperators
+* [#161](https://github.com/stevenfontanella/microlens/pull/161) Fix GHC 9.4 
warning for using `~` without TypeOperators.
 
 # 0.4.3.10
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/microlens-th-0.4.3.12/microlens-th.cabal 
new/microlens-th-0.4.3.13/microlens-th.cabal
--- old/microlens-th-0.4.3.12/microlens-th.cabal        2001-09-09 
03:46:40.000000000 +0200
+++ new/microlens-th-0.4.3.13/microlens-th.cabal        2001-09-09 
03:46:40.000000000 +0200
@@ -1,5 +1,5 @@
 name:                microlens-th
-version:             0.4.3.12
+version:             0.4.3.13
 synopsis:            Automatic generation of record lenses for microlens
 description:
   This package lets you automatically generate lenses for data types; code was 
extracted from the lens package, and therefore generated lenses are fully 
compatible with ones generated by lens (and can be used both from lens and 
microlens).
@@ -44,7 +44,7 @@
                      , containers >=0.5 && <0.7
                      , transformers
                      , template-haskell >=2.8 && <2.21
-                     , th-abstraction >=0.4.1 && <0.5
+                     , th-abstraction >=0.4.1 && <0.6
 
   ghc-options:
     -Wall -fwarn-tabs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/microlens-th-0.4.3.12/src/Lens/Micro/TH/Internal.hs 
new/microlens-th-0.4.3.13/src/Lens/Micro/TH/Internal.hs
--- old/microlens-th-0.4.3.12/src/Lens/Micro/TH/Internal.hs     2001-09-09 
03:46:40.000000000 +0200
+++ new/microlens-th-0.4.3.13/src/Lens/Micro/TH/Internal.hs     2001-09-09 
03:46:40.000000000 +0200
@@ -294,6 +294,9 @@
 isDataFamily D.Newtype         = False
 isDataFamily D.DataInstance    = True
 isDataFamily D.NewtypeInstance = True
+#if MIN_VERSION_th_abstraction(0,5,0)
+isDataFamily D.TypeData        = False
+#endif
 
 ----------------------------------------------------------------------------
 -- Lens functions which would've been in Lens.Micro if it wasn't “micro”

Reply via email to