commit ghc-gogol-books for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-gogol-books for openSUSE:Factory checked in at 2017-08-31 20:52:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-gogol-books (Old) and /work/SRC/openSUSE:Factory/.ghc-gogol-books.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "ghc-gogol-books" Thu Aug 31 20:52:27 2017 rev:2 rq:513285 version:0.3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-gogol-books/ghc-gogol-books.changes 2017-05-10 20:39:20.773424838 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-gogol-books.new/ghc-gogol-books.changes 2017-08-31 20:52:27.717149761 +0200 @@ -1,0 +2,5 @@ +Thu Jul 27 14:07:03 UTC 2017 - psimons@suse.com + +- Update to version 0.3.0. + +------------------------------------------------------------------- Old: ---- gogol-books-0.1.1.tar.gz New: ---- gogol-books-0.3.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-gogol-books.spec ++++++ --- /var/tmp/diff_new_pack.Zm1Ndb/_old 2017-08-31 20:52:28.569030179 +0200 +++ /var/tmp/diff_new_pack.Zm1Ndb/_new 2017-08-31 20:52:28.589027373 +0200 @@ -18,7 +18,7 @@ %global pkg_name gogol-books Name: ghc-%{pkg_name} -Version: 0.1.1 +Version: 0.3.0 Release: 0 Summary: Google Books SDK License: MPL-2.0 ++++++ gogol-books-0.1.1.tar.gz -> gogol-books-0.3.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gogol-books-0.1.1/README.md new/gogol-books-0.3.0/README.md --- old/gogol-books-0.1.1/README.md 2016-11-03 14:26:28.000000000 +0100 +++ new/gogol-books-0.3.0/README.md 2017-07-12 16:51:29.000000000 +0200 @@ -8,7 +8,7 @@ ## Version -`0.1.1` +`0.3.0` ## Description diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gogol-books-0.1.1/gen/Network/Google/Books/Types/Product.hs new/gogol-books-0.3.0/gen/Network/Google/Books/Types/Product.hs --- old/gogol-books-0.1.1/gen/Network/Google/Books/Types/Product.hs 2016-11-03 14:26:28.000000000 +0100 +++ new/gogol-books-0.3.0/gen/Network/Google/Books/Types/Product.hs 2017-07-12 16:51:29.000000000 +0200 @@ -404,7 +404,7 @@ -- -- /See:/ 'annotationData' smart constructor. data AnnotationData = AnnotationData' - { _annEncodedData :: !(Maybe Base64) + { _annEncodedData :: !(Maybe Bytes) , _annKind :: !Text , _annData :: !(Maybe JSONValue) , _annSelfLink :: !(Maybe Text) @@ -456,7 +456,7 @@ annEncodedData = lens _annEncodedData (\ s a -> s{_annEncodedData = a}) - . mapping _Base64 + . mapping _Bytes -- | Resource Type annKind :: Lens' AnnotationData Text @@ -2401,6 +2401,7 @@ , _nReason :: !(Maybe Text) , _nDontShowNotification :: !(Maybe Bool) , _nNotificationType :: !(Maybe Text) + , _nNotificationGroup :: !(Maybe Text) , _nIconURL :: !(Maybe Text) , _nTitle :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) @@ -2431,6 +2432,8 @@ -- -- * 'nNotificationType' -- +-- * 'nNotificationGroup' +-- -- * 'nIconURL' -- -- * 'nTitle' @@ -2449,6 +2452,7 @@ , _nReason = Nothing , _nDontShowNotification = Nothing , _nNotificationType = Nothing + , _nNotificationGroup = Nothing , _nIconURL = Nothing , _nTitle = Nothing } @@ -2500,6 +2504,11 @@ = lens _nNotificationType (\ s a -> s{_nNotificationType = a}) +nNotificationGroup :: Lens' Notification (Maybe Text) +nNotificationGroup + = lens _nNotificationGroup + (\ s a -> s{_nNotificationGroup = a}) + nIconURL :: Lens' Notification (Maybe Text) nIconURL = lens _nIconURL (\ s a -> s{_nIconURL = a}) @@ -2521,6 +2530,7 @@ <*> (o .:? "reason") <*> (o .:? "dont_show_notification") <*> (o .:? "notification_type") + <*> (o .:? "notificationGroup") <*> (o .:? "iconUrl") <*> (o .:? "title")) @@ -2540,6 +2550,7 @@ ("dont_show_notification" .=) <$> _nDontShowNotification, ("notification_type" .=) <$> _nNotificationType, + ("notificationGroup" .=) <$> _nNotificationGroup, ("iconUrl" .=) <$> _nIconURL, ("title" .=) <$> _nTitle]) @@ -3300,8 +3311,6 @@ sKind :: Lens' Series Text sKind = lens _sKind (\ s a -> s{_sKind = a}) --- | Series info list. The client always expects this element in the JSON --- output, hence declared here as OutputAlways. sSeries :: Lens' Series [SeriesSeriesItem] sSeries = lens _sSeries (\ s a -> s{_sSeries = a}) . _Default diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gogol-books-0.1.1/gen/Network/Google/Books/Types.hs new/gogol-books-0.3.0/gen/Network/Google/Books/Types.hs --- old/gogol-books-0.1.1/gen/Network/Google/Books/Types.hs 2016-11-03 14:26:28.000000000 +0100 +++ new/gogol-books-0.3.0/gen/Network/Google/Books/Types.hs 2017-07-12 16:51:29.000000000 +0200 @@ -299,6 +299,7 @@ , nReason , nDontShowNotification , nNotificationType + , nNotificationGroup , nIconURL , nTitle diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gogol-books-0.1.1/gen/Network/Google/Books.hs new/gogol-books-0.3.0/gen/Network/Google/Books.hs --- old/gogol-books-0.1.1/gen/Network/Google/Books.hs 2016-11-03 14:26:28.000000000 +0100 +++ new/gogol-books-0.3.0/gen/Network/Google/Books.hs 2017-07-12 16:51:29.000000000 +0200 @@ -452,6 +452,7 @@ , nReason , nDontShowNotification , nNotificationType + , nNotificationGroup , nIconURL , nTitle diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gogol-books-0.1.1/gogol-books.cabal new/gogol-books-0.3.0/gogol-books.cabal --- old/gogol-books-0.1.1/gogol-books.cabal 2016-11-03 14:26:28.000000000 +0100 +++ new/gogol-books-0.3.0/gogol-books.cabal 2017-07-12 16:51:29.000000000 +0200 @@ -1,5 +1,5 @@ name: gogol-books -version: 0.1.1 +version: 0.3.0 synopsis: Google Books SDK. homepage: https://github.com/brendanhay/gogol bug-reports: https://github.com/brendanhay/gogol/issues @@ -89,5 +89,5 @@ , Network.Google.Books.Types.Sum build-depends: - gogol-core == 0.1.1.* + gogol-core == 0.3.0.* , base >= 4.7 && < 5
participants (1)
-
root@hilbert.suse.de