Hello community,
here is the log from the commit of package ghc-regex-applicative for
openSUSE:Factory checked in at 2019-08-24 18:44:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-regex-applicative (Old)
and /work/SRC/openSUSE:Factory/.ghc-regex-applicative.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-regex-applicative"
Sat Aug 24 18:44:28 2019 rev:7 rq:725523 version:0.3.3.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-regex-applicative/ghc-regex-applicative.changes
2018-10-25 09:03:06.802623256 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-regex-applicative.new.7948/ghc-regex-applicative.changes
2019-08-24 18:44:30.469768292 +0200
@@ -1,0 +2,10 @@
+Mon Aug 19 02:01:10 UTC 2019 - [email protected]
+
+- Update regex-applicative to version 0.3.3.1.
+ 0.3.3.1
+ -------
+
+ Make a release to refresh the haddocks on hackage
+ (see <https://github.com/feuerbach/regex-applicative/issues/35>).
+
+-------------------------------------------------------------------
Old:
----
regex-applicative-0.3.3.tar.gz
New:
----
regex-applicative-0.3.3.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-regex-applicative.spec ++++++
--- /var/tmp/diff_new_pack.DG9Plf/_old 2019-08-24 18:44:32.269768118 +0200
+++ /var/tmp/diff_new_pack.DG9Plf/_new 2019-08-24 18:44:32.273768118 +0200
@@ -1,7 +1,7 @@
#
# spec file for package ghc-regex-applicative
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%global pkg_name regex-applicative
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.3.3
+Version: 0.3.3.1
Release: 0
Summary: Regex-based parsing with applicative interface
License: MIT
++++++ regex-applicative-0.3.3.tar.gz -> regex-applicative-0.3.3.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/regex-applicative-0.3.3/CHANGES.md
new/regex-applicative-0.3.3.1/CHANGES.md
--- old/regex-applicative-0.3.3/CHANGES.md 2015-12-27 09:42:28.000000000
+0100
+++ new/regex-applicative-0.3.3.1/CHANGES.md 2019-08-18 22:57:42.000000000
+0200
@@ -1,6 +1,12 @@
Changes
=======
+0.3.3.1
+-------
+
+Make a release to refresh the haddocks on hackage
+(see <https://github.com/feuerbach/regex-applicative/issues/35>).
+
0.3.3
-----
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/regex-applicative-0.3.3/benchmark/benchmark.hs
new/regex-applicative-0.3.3.1/benchmark/benchmark.hs
--- old/regex-applicative-0.3.3/benchmark/benchmark.hs 1970-01-01
01:00:00.000000000 +0100
+++ new/regex-applicative-0.3.3.1/benchmark/benchmark.hs 2017-12-25
17:43:46.000000000 +0100
@@ -0,0 +1,11 @@
+import Data.List
+import Data.Traversable
+import Data.Maybe
+
+import Criterion.Main
+
+import Text.Regex.Applicative
+
+regex = sequenceA (replicate 500 $ sym 'a' <|> pure 'b') <* sequenceA
(replicate 500 $ sym 'a')
+
+main = defaultMain [bench "aaaaa" $ whnf (match regex) $ replicate 800 'a']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/regex-applicative-0.3.3/regex-applicative.cabal
new/regex-applicative-0.3.3.1/regex-applicative.cabal
--- old/regex-applicative-0.3.3/regex-applicative.cabal 2015-12-27
09:42:34.000000000 +0100
+++ new/regex-applicative-0.3.3.1/regex-applicative.cabal 2019-08-18
22:56:36.000000000 +0200
@@ -1,5 +1,5 @@
Name: regex-applicative
-Version: 0.3.3
+Version: 0.3.3.1
Synopsis: Regex-based parsing with applicative interface
Description:
regex-applicative is a Haskell library for parsing using regular
expressions.
@@ -31,8 +31,7 @@
Other-modules: Text.Regex.Applicative.Interface
Text.Regex.Applicative.Types
Text.Regex.Applicative.Compile
- GHC-Options: -O2
- -Wall
+ GHC-Options: -Wall
-fno-warn-name-shadowing
-fno-warn-missing-signatures
-fno-warn-orphans
@@ -55,3 +54,12 @@
tasty-smallcheck,
tasty-hunit,
regex-applicative
+
+Benchmark bench-regex-applicative
+ type: exitcode-stdio-1.0
+ hs-source-dirs: benchmark
+ main-is: benchmark.hs
+ build-depends: base <5
+ , criterion
+ , regex-applicative
+ default-language: Haskell2010