Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-githash for openSUSE:Factory checked in at 2023-06-22 23:25:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-githash (Old) and /work/SRC/openSUSE:Factory/.ghc-githash.new.15902 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-githash" Thu Jun 22 23:25:24 2023 rev:10 rq:1094432 version:0.1.7.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-githash/ghc-githash.changes 2023-04-04 21:20:20.417159752 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-githash.new.15902/ghc-githash.changes 2023-06-22 23:25:50.181772812 +0200 @@ -1,0 +2,8 @@ +Wed Jun 21 05:05:14 UTC 2023 - Peter Simons <psim...@suse.com> + +- Update githash to version 0.1.7.0. + ## 0.1.7.0 + + * Expose giFiles to users. + +------------------------------------------------------------------- Old: ---- githash-0.1.6.3.tar.gz New: ---- githash-0.1.7.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-githash.spec ++++++ --- /var/tmp/diff_new_pack.95SXsG/_old 2023-06-22 23:25:50.657775241 +0200 +++ /var/tmp/diff_new_pack.95SXsG/_new 2023-06-22 23:25:50.665775281 +0200 @@ -20,7 +20,7 @@ %global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.6.3 +Version: 0.1.7.0 Release: 0 Summary: Compile git revision info into Haskell projects License: BSD-3-Clause ++++++ githash-0.1.6.3.tar.gz -> githash-0.1.7.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/githash-0.1.6.3/ChangeLog.md new/githash-0.1.7.0/ChangeLog.md --- old/githash-0.1.6.3/ChangeLog.md 2022-10-23 13:37:03.000000000 +0200 +++ new/githash-0.1.7.0/ChangeLog.md 2023-06-21 07:02:53.000000000 +0200 @@ -1,5 +1,9 @@ # ChangeLog for githash +## 0.1.7.0 + +* Expose giFiles to users. + ## 0.1.6.3 * Specify protocol.file.allow=always for latest git [#28](https://github.com/snoyberg/githash/pull/28) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/githash-0.1.6.3/githash.cabal new/githash-0.1.7.0/githash.cabal --- old/githash-0.1.6.3/githash.cabal 2022-10-23 13:37:11.000000000 +0200 +++ new/githash-0.1.7.0/githash.cabal 2023-06-21 07:02:57.000000000 +0200 @@ -1,11 +1,11 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.35.0. +-- This file has been generated from package.yaml by hpack version 0.35.1. -- -- see: https://github.com/sol/hpack name: githash -version: 0.1.6.3 +version: 0.1.7.0 synopsis: Compile git revision info into Haskell projects description: Please see the README and documentation at <https://www.stackage.org/package/githash> category: Development diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/githash-0.1.6.3/src/GitHash.hs new/githash-0.1.7.0/src/GitHash.hs --- old/githash-0.1.6.3/src/GitHash.hs 2022-10-23 13:34:27.000000000 +0200 +++ new/githash-0.1.7.0/src/GitHash.hs 2023-06-21 07:02:53.000000000 +0200 @@ -49,6 +49,7 @@ , giCommitMessage , giDescribe , giTag + , giFiles -- * Creators , getGitInfo , getGitRoot @@ -129,6 +130,12 @@ giTag :: GitInfo -> String giTag = _giTag +-- | The files used to determine whether recompilation is necessary in splices. +-- +-- @since 0.1.7.0 +giFiles :: GitInfo -> [FilePath] +giFiles = _giFiles + -- | Get a list of files from within a @.git@ directory. getGitFilesRegular :: FilePath -> IO [FilePath] -- [Note: Current implementation's limitation]