Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-hslua-typing for openSUSE:Factory checked in at 2024-01-26 22:47:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-hslua-typing (Old) and /work/SRC/openSUSE:Factory/.ghc-hslua-typing.new.1815 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-hslua-typing" Fri Jan 26 22:47:24 2024 rev:2 rq:1141628 version:0.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-hslua-typing/ghc-hslua-typing.changes 2023-04-14 13:12:46.539460071 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-hslua-typing.new.1815/ghc-hslua-typing.changes 2024-01-26 22:47:38.517007647 +0100 @@ -1,0 +2,11 @@ +Thu Jan 18 17:08:57 UTC 2024 - Peter Simons <psim...@suse.com> + +- Update hslua-typing to version 0.1.1. + ## hslua-typing-0.1.1 + + Released 2024-01-18. + + - Relaxed upper bound for text and containers, allowing + text-2.1, and containers-0.7. + +------------------------------------------------------------------- Old: ---- hslua-typing-0.1.0.tar.gz New: ---- hslua-typing-0.1.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-hslua-typing.spec ++++++ --- /var/tmp/diff_new_pack.QcLRuR/_old 2024-01-26 22:47:38.985024502 +0100 +++ /var/tmp/diff_new_pack.QcLRuR/_new 2024-01-26 22:47:38.985024502 +0100 @@ -1,7 +1,7 @@ # # spec file for package ghc-hslua-typing # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 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 pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.0 +Version: 0.1.1 Release: 0 Summary: Type specifiers for Lua License: MIT ++++++ hslua-typing-0.1.0.tar.gz -> hslua-typing-0.1.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hslua-typing-0.1.0/CHANGELOG.md new/hslua-typing-0.1.1/CHANGELOG.md --- old/hslua-typing-0.1.0/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 +++ new/hslua-typing-0.1.1/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 @@ -2,6 +2,13 @@ `hslua-typing` uses [PVP Versioning][]. +## hslua-typing-0.1.1 + +Released 2024-01-18. + +- Relaxed upper bound for text and containers, allowing + text-2.1, and containers-0.7. + ## hslua-typing-0.1.0 Released 2023-03-13. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hslua-typing-0.1.0/LICENSE new/hslua-typing-0.1.1/LICENSE --- old/hslua-typing-0.1.0/LICENSE 2001-09-09 03:46:40.000000000 +0200 +++ new/hslua-typing-0.1.1/LICENSE 2001-09-09 03:46:40.000000000 +0200 @@ -1,4 +1,4 @@ -Copyright © 2023 Albert Krewinkel +Copyright © 2023-2024 Albert Krewinkel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hslua-typing-0.1.0/hslua-typing.cabal new/hslua-typing-0.1.1/hslua-typing.cabal --- old/hslua-typing-0.1.0/hslua-typing.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/hslua-typing-0.1.1/hslua-typing.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,6 +1,6 @@ cabal-version: 2.2 name: hslua-typing -version: 0.1.0 +version: 0.1.1 synopsis: Type specifiers for Lua. description: Structure to hold detailed type information. The primary use-case at this time are auto-generated docs. @@ -9,7 +9,7 @@ license-file: LICENSE author: Albert Krewinkel maintainer: Albert Krewinkel <tar...@hslua.org> -copyright: © 2023 Albert Krewinkel +copyright: © 2023-2024 Albert Krewinkel category: Foreign extra-source-files: README.md , CHANGELOG.md @@ -18,8 +18,10 @@ , GHC == 8.8.4 , GHC == 8.10.7 , GHC == 9.0.2 - , GHC == 9.2.5 - , GHC == 9.4.4 + , GHC == 9.2.8 + , GHC == 9.4.8 + , GHC == 9.6.3 + , GHC == 9.8.1 source-repository head type: git @@ -54,10 +56,10 @@ import: common-options exposed-modules: HsLua.Typing hs-source-dirs: src - build-depends: containers >= 0.5.9 && < 0.7 + build-depends: containers >= 0.5.9 && < 0.8 , hslua-core >= 2.3 && < 2.4 , hslua-marshalling >= 2.3 && < 2.4 - , text >= 1.2 && < 2.1 + , text >= 1.2 && < 2.2 default-language: Haskell2010 test-suite test-hslua-typing diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hslua-typing-0.1.0/src/HsLua/Typing.hs new/hslua-typing-0.1.1/src/HsLua/Typing.hs --- old/hslua-typing-0.1.0/src/HsLua/Typing.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/hslua-typing-0.1.1/src/HsLua/Typing.hs 2001-09-09 03:46:40.000000000 +0200 @@ -3,7 +3,7 @@ {-# LANGUAGE OverloadedStrings #-} {-| Module : HsLua.Typing -Copyright : © 2023 Albert Krewinkel +Copyright : © 2023-2024 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tar...@hslua.org> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hslua-typing-0.1.0/test/test-hslua-typing.hs new/hslua-typing-0.1.1/test/test-hslua-typing.hs --- old/hslua-typing-0.1.0/test/test-hslua-typing.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/hslua-typing-0.1.1/test/test-hslua-typing.hs 2001-09-09 03:46:40.000000000 +0200 @@ -3,7 +3,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module : Main -Copyright : © 2023 Albert Krewinkel +Copyright : © 2023-2024 Albert Krewinkel License : MIT Maintainer : Albert Krewinkel <tar...@hslua.org>