Hello community, here is the log from the commit of package ghc-simple for openSUSE:Factory checked in at 2017-06-04 01:55:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-simple (Old) and /work/SRC/openSUSE:Factory/.ghc-simple.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-simple" Sun Jun 4 01:55:20 2017 rev:2 rq:494188 version:0.11.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-simple/ghc-simple.changes 2017-04-12 18:08:59.099308074 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-simple.new/ghc-simple.changes 2017-06-04 01:55:21.618079863 +0200 @@ -1,0 +2,5 @@ +Wed May 3 08:14:01 UTC 2017 - [email protected] + +- Update to version 0.11.2 with cabal2obs. + +------------------------------------------------------------------- Old: ---- simple-0.11.1.tar.gz New: ---- simple-0.11.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-simple.spec ++++++ --- /var/tmp/diff_new_pack.AhLU0l/_old 2017-06-04 01:55:22.086013753 +0200 +++ /var/tmp/diff_new_pack.AhLU0l/_new 2017-06-04 01:55:22.090013188 +0200 @@ -19,7 +19,7 @@ %global pkg_name simple %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.11.1 +Version: 0.11.2 Release: 0 Summary: A minimalist web framework for the WAI server interface License: LGPL-3.0+ ++++++ simple-0.11.1.tar.gz -> simple-0.11.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/simple-0.11.1/simple.cabal new/simple-0.11.2/simple.cabal --- old/simple-0.11.1/simple.cabal 2016-01-11 19:16:00.000000000 +0100 +++ new/simple-0.11.2/simple.cabal 2017-04-22 23:20:45.000000000 +0200 @@ -1,5 +1,5 @@ name: simple -version: 0.11.1 +version: 0.11.2 synopsis: A minimalist web framework for the WAI server interface description: @@ -127,4 +127,3 @@ source-repository head type: git location: http://github.com/alevy/simple.git - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/simple-0.11.1/src/Web/Frank.hs new/simple-0.11.2/src/Web/Frank.hs --- old/simple-0.11.1/src/Web/Frank.hs 2016-01-11 19:16:00.000000000 +0100 +++ new/simple-0.11.2/src/Web/Frank.hs 2017-04-22 23:20:45.000000000 +0200 @@ -26,6 +26,7 @@ ( get , post , put + , patch , delete , options ) where @@ -52,6 +53,10 @@ put :: Monad m => Text -> ControllerT s m a -> ControllerT s m () put = frankMethod PUT +-- | Matches the PATCH method on the given URL pattern +patch :: Monad m => Text -> ControllerT s m a -> ControllerT s m () +patch = frankMethod PATCH + -- | Matches the DELETE method on the given URL pattern delete :: Monad m => Text -> ControllerT s m a -> ControllerT s m () delete = frankMethod DELETE
