Hello community,
here is the log from the commit of package ghc-relational-record for
openSUSE:Factory checked in at 2017-03-03 17:51:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-relational-record (Old)
and /work/SRC/openSUSE:Factory/.ghc-relational-record.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-relational-record"
Fri Mar 3 17:51:44 2017 rev:3 rq:461677 version:0.1.6.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-relational-record/ghc-relational-record.changes
2017-02-06 15:24:01.364203446 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-relational-record.new/ghc-relational-record.changes
2017-03-03 17:51:45.483907737 +0100
@@ -1,0 +2,5 @@
+Mon Feb 20 08:41:27 UTC 2017 - [email protected]
+
+- Update to version 0.1.6.1 with cabal2obs.
+
+-------------------------------------------------------------------
Old:
----
relational-record-0.1.5.1.tar.gz
New:
----
relational-record-0.1.6.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-relational-record.spec ++++++
--- /var/tmp/diff_new_pack.MzcSsy/_old 2017-03-03 17:51:46.155812839 +0100
+++ /var/tmp/diff_new_pack.MzcSsy/_new 2017-03-03 17:51:46.159812274 +0100
@@ -1,7 +1,7 @@
#
# spec file for package ghc-relational-record
#
-# 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
@@ -18,7 +18,7 @@
%global pkg_name relational-record
Name: ghc-%{pkg_name}
-Version: 0.1.5.1
+Version: 0.1.6.1
Release: 0
Summary: Meta package of Relational Record
License: BSD-3-Clause
++++++ relational-record-0.1.5.1.tar.gz -> relational-record-0.1.6.1.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/relational-record-0.1.5.1/relational-record.cabal
new/relational-record-0.1.6.1/relational-record.cabal
--- old/relational-record-0.1.5.1/relational-record.cabal 2016-09-06
08:39:23.000000000 +0200
+++ new/relational-record-0.1.6.1/relational-record.cabal 2017-02-19
08:02:00.000000000 +0100
@@ -1,5 +1,5 @@
name: relational-record
-version: 0.1.5.1
+version: 0.1.6.1
synopsis: Meta package of Relational Record
description: Meta package to install Relational Record quickly
homepage: http://khibino.github.io/haskell-relational-record/
@@ -7,7 +7,7 @@
license-file: LICENSE
author: Kei Hibino
maintainer: [email protected]
-copyright: Copyright (c) 2014-2016 Kei Hibino
+copyright: Copyright (c) 2014-2017 Kei Hibino
category: Database
build-type: Simple
cabal-version: >=1.10
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/relational-record-0.1.5.1/src/Database/Relational/Query/Documentation.hs
new/relational-record-0.1.6.1/src/Database/Relational/Query/Documentation.hs
---
old/relational-record-0.1.5.1/src/Database/Relational/Query/Documentation.hs
2016-09-06 08:39:23.000000000 +0200
+++
new/relational-record-0.1.6.1/src/Database/Relational/Query/Documentation.hs
2017-02-19 08:02:00.000000000 +0100
@@ -1,6 +1,6 @@
-- |
-- Module : Database.Relational.Query.Documentation
--- Copyright : 2014-2016 Kei Hibino
+-- Copyright : 2014-2017 Kei Hibino
-- License : BSD3
--
-- Maintainer : [email protected]
@@ -40,6 +40,8 @@
inner, left, right, full,
on',
+ JoinRestriction,
+
-- *** Finalize Context
-- $finalize
Relation,
@@ -227,6 +229,7 @@
'inner', 'left', 'right', 'full' operators can construct join products
directly like SQL.
'inner' operator is INNER JOIN of SQL, 'left' operator is LEFT OUTER JOIN of
SQL, and so on.
'on'' operator specifies condition of join product.
+'JoinRestriction' is the type of lambda form which expresses condition of join
product.
-}
{- $finalize