Hello community,

here is the log from the commit of package ghc-gogol-games for openSUSE:Factory 
checked in at 2017-08-31 20:53:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-gogol-games (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-gogol-games.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-gogol-games"

Thu Aug 31 20:53:32 2017 rev:2 rq:513310 version:0.3.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-gogol-games/ghc-gogol-games.changes  
2017-05-10 20:41:18.412826441 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-gogol-games.new/ghc-gogol-games.changes     
2017-08-31 20:53:32.488049871 +0200
@@ -1,0 +2,5 @@
+Thu Jul 27 14:02:58 UTC 2017 - psim...@suse.com
+
+- Update to version 0.3.0.
+
+-------------------------------------------------------------------

Old:
----
  gogol-games-0.1.1.tar.gz

New:
----
  gogol-games-0.3.0.tar.gz

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

Other differences:
------------------
++++++ ghc-gogol-games.spec ++++++
--- /var/tmp/diff_new_pack.5EXrSo/_old  2017-08-31 20:53:33.511906015 +0200
+++ /var/tmp/diff_new_pack.5EXrSo/_new  2017-08-31 20:53:33.519904891 +0200
@@ -18,7 +18,7 @@
 
 %global pkg_name gogol-games
 Name:           ghc-%{pkg_name}
-Version:        0.1.1
+Version:        0.3.0
 Release:        0
 Summary:        Google Play Game Services SDK
 License:        MPL-2.0

++++++ gogol-games-0.1.1.tar.gz -> gogol-games-0.3.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gogol-games-0.1.1/README.md 
new/gogol-games-0.3.0/README.md
--- old/gogol-games-0.1.1/README.md     2016-11-03 14:26:27.000000000 +0100
+++ new/gogol-games-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-games-0.1.1/gen/Network/Google/Games/Types/Product.hs 
new/gogol-games-0.3.0/gen/Network/Google/Games/Types/Product.hs
--- old/gogol-games-0.1.1/gen/Network/Google/Games/Types/Product.hs     
2016-11-03 14:26:27.000000000 +0100
+++ new/gogol-games-0.3.0/gen/Network/Google/Games/Types/Product.hs     
2017-07-12 16:51:29.000000000 +0200
@@ -847,7 +847,7 @@
 -- /See:/ 'turnBasedMatchData' smart constructor.
 data TurnBasedMatchData = TurnBasedMatchData'
     { _tbmdKind          :: !Text
-    , _tbmdData          :: !(Maybe Base64)
+    , _tbmdData          :: !(Maybe Bytes)
     , _tbmdDataAvailable :: !(Maybe Bool)
     } deriving (Eq,Show,Data,Typeable,Generic)
 
@@ -879,7 +879,7 @@
 tbmdData :: Lens' TurnBasedMatchData (Maybe ByteString)
 tbmdData
   = lens _tbmdData (\ s a -> s{_tbmdData = a}) .
-      mapping _Base64
+      mapping _Bytes
 
 -- | True if this match has data available but it wasn\'t returned in a list
 -- response; fetching the match individually will retrieve this data.
@@ -6064,7 +6064,7 @@
 --
 -- /See:/ 'pushTokenIdIos' smart constructor.
 data PushTokenIdIos = PushTokenIdIos'
-    { _ptiiAPNSDeviceToken :: !(Maybe Base64)
+    { _ptiiAPNSDeviceToken :: !(Maybe Bytes)
     , _ptiiAPNSEnvironment :: !(Maybe Text)
     } deriving (Eq,Show,Data,Typeable,Generic)
 
@@ -6089,7 +6089,7 @@
 ptiiAPNSDeviceToken
   = lens _ptiiAPNSDeviceToken
       (\ s a -> s{_ptiiAPNSDeviceToken = a})
-      . mapping _Base64
+      . mapping _Bytes
 
 -- | Indicates whether this token should be used for the production or
 -- sandbox APNS server.
@@ -6664,7 +6664,7 @@
     { _qmState                :: !(Maybe Text)
     , _qmKind                 :: !Text
     , _qmId                   :: !(Maybe Text)
-    , _qmCompletionRewardData :: !(Maybe Base64)
+    , _qmCompletionRewardData :: !(Maybe Bytes)
     , _qmCriteria             :: !(Maybe [QuestCriterion])
     } deriving (Eq,Show,Data,Typeable,Generic)
 
@@ -6717,7 +6717,7 @@
 qmCompletionRewardData
   = lens _qmCompletionRewardData
       (\ s a -> s{_qmCompletionRewardData = a})
-      . mapping _Base64
+      . mapping _Bytes
 
 -- | The criteria of the milestone.
 qmCriteria :: Lens' QuestMilestone [QuestCriterion]
@@ -8233,7 +8233,7 @@
 -- /See:/ 'turnBasedMatchDataRequest' smart constructor.
 data TurnBasedMatchDataRequest = TurnBasedMatchDataRequest'
     { _tbmdrKind :: !Text
-    , _tbmdrData :: !(Maybe Base64)
+    , _tbmdrData :: !(Maybe Bytes)
     } deriving (Eq,Show,Data,Typeable,Generic)
 
 -- | Creates a value of 'TurnBasedMatchDataRequest' with the minimum fields 
required to make a request.
@@ -8262,7 +8262,7 @@
 tbmdrData :: Lens' TurnBasedMatchDataRequest (Maybe ByteString)
 tbmdrData
   = lens _tbmdrData (\ s a -> s{_tbmdrData = a}) .
-      mapping _Base64
+      mapping _Bytes
 
 instance FromJSON TurnBasedMatchDataRequest where
         parseJSON
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gogol-games-0.1.1/gogol-games.cabal 
new/gogol-games-0.3.0/gogol-games.cabal
--- old/gogol-games-0.1.1/gogol-games.cabal     2016-11-03 14:26:27.000000000 
+0100
+++ new/gogol-games-0.3.0/gogol-games.cabal     2017-07-12 16:51:29.000000000 
+0200
@@ -1,5 +1,5 @@
 name:                  gogol-games
-version:               0.1.1
+version:               0.3.0
 synopsis:              Google Play Game Services SDK.
 homepage:              https://github.com/brendanhay/gogol
 bug-reports:           https://github.com/brendanhay/gogol/issues
@@ -94,5 +94,5 @@
         , Network.Google.Games.Types.Sum
 
     build-depends:
-          gogol-core == 0.1.1.*
+          gogol-core == 0.3.0.*
         , base       >= 4.7 && < 5


Reply via email to