Hello community,

here is the log from the commit of package ghc-cmark for openSUSE:Factory 
checked in at 2017-02-21 13:45:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-cmark (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-cmark.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-cmark"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-cmark/ghc-cmark.changes      2016-12-06 
14:24:38.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-cmark.new/ghc-cmark.changes 2017-02-21 
13:45:23.338276735 +0100
@@ -1,0 +2,5 @@
+Sun Feb  5 19:31:51 UTC 2017 - psim...@suse.com
+
+- Update to version 0.5.5 with cabal2obs.
+
+-------------------------------------------------------------------

Old:
----
  cmark-0.5.4.tar.gz

New:
----
  cmark-0.5.5.tar.gz

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

Other differences:
------------------
++++++ ghc-cmark.spec ++++++
--- /var/tmp/diff_new_pack.JlpyU1/_old  2017-02-21 13:45:23.806210721 +0100
+++ /var/tmp/diff_new_pack.JlpyU1/_new  2017-02-21 13:45:23.806210721 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-cmark
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -26,10 +26,10 @@
 %endif
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.5.4
+Version:        0.5.5
 Release:        0
 Summary:        Fast, accurate CommonMark (Markdown) parser and renderer
-License:        BSD-3-Clause and BSD-2-Clause and MIT
+License:        BSD-3-Clause AND BSD-2-Clause AND MIT
 Group:          Development/Languages/Other
 Url:            https://hackage.haskell.org/package/%{pkg_name}
 Source0:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
@@ -49,7 +49,7 @@
 %description
 This package provides Haskell bindings for <https://github.com/jgm/cmark
 libcmark>, the reference parser for <http://commonmark.org CommonMark>, a fully
-specified variant of Markdown. It includes sources for libcmark (0.26.0) and
+specified variant of Markdown. It includes sources for libcmark (0.27.1) and
 does not require prior installation of the C library.
 
 %package devel

++++++ cmark-0.5.4.tar.gz -> cmark-0.5.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cmark-0.5.4/README.md new/cmark-0.5.5/README.md
--- old/cmark-0.5.4/README.md   2016-11-18 22:29:55.000000000 +0100
+++ new/cmark-0.5.5/README.md   2017-01-31 11:57:26.000000000 +0100
@@ -3,7 +3,7 @@
 
 This package provides Haskell bindings for [libcmark], the reference
 parser for [CommonMark], a fully specified variant of Markdown.
-It includes sources for [libcmark] (version 0.27.0, implementing
+It includes sources for [libcmark] (version 0.27.1, implementing
 version 0.27 of the spec) and does not require prior installation of
 the C library.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cmark-0.5.4/cbits/cmark_version.h 
new/cmark-0.5.5/cbits/cmark_version.h
--- old/cmark-0.5.4/cbits/cmark_version.h       2016-11-18 22:27:20.000000000 
+0100
+++ new/cmark-0.5.5/cbits/cmark_version.h       2017-01-31 11:53:56.000000000 
+0100
@@ -1,7 +1,7 @@
 #ifndef CMARK_VERSION_H
 #define CMARK_VERSION_H
 
-#define CMARK_VERSION ((0 << 16) | (27 << 8)  | 0)
-#define CMARK_VERSION_STRING "0.27.0"
+#define CMARK_VERSION ((0 << 16) | (27 << 8)  | 1)
+#define CMARK_VERSION_STRING "0.27.1"
 
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cmark-0.5.4/changelog new/cmark-0.5.5/changelog
--- old/cmark-0.5.4/changelog   2016-11-18 22:26:18.000000000 +0100
+++ new/cmark-0.5.5/changelog   2017-01-31 11:56:45.000000000 +0100
@@ -1,3 +1,12 @@
+cmark 0.5.5 (31 Jan 2017)
+
+  * Update to cmark 0.27.1.
+  * Update version bounds for dependencies.
+
+cmark 0.5.4 (18 Nov 2016)
+
+  * Update to cmark 0.27.0.
+
 cmark 0.5.3.1 (16 Jul 2016)
 
   * Remove unnecessary typedef that caused problems with the build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cmark-0.5.4/cmark.cabal new/cmark-0.5.5/cmark.cabal
--- old/cmark-0.5.4/cmark.cabal 2016-11-18 22:29:39.000000000 +0100
+++ new/cmark-0.5.5/cmark.cabal 2017-01-31 11:58:28.000000000 +0100
@@ -1,12 +1,12 @@
 name:                cmark
-version:             0.5.4
+version:             0.5.5
 synopsis:            Fast, accurate CommonMark (Markdown) parser and renderer
 description:
   This package provides Haskell bindings for
   <https://github.com/jgm/cmark libcmark>, the reference
   parser for <http://commonmark.org CommonMark>, a fully
   specified variant of Markdown. It includes sources for
-  libcmark (0.26.0) and does not require prior installation of the
+  libcmark (0.27.1) and does not require prior installation of the
   C library.
 
 homepage:            https://github.com/jgm/cmark-hs
@@ -96,7 +96,7 @@
                     cheapskate >= 0.1 && < 0.2,
                     markdown >= 0.1 && < 0.2,
                     discount >= 0.1 && < 0.2,
-                    blaze-html >= 0.7 && < 0.9
+                    blaze-html >= 0.7 && < 0.10
   ghc-options:      -O2
   default-language: Haskell2010
 


Reply via email to