packages feed

telegram-bot-simple 0.3.4 → 0.3.5

raw patch · 3 files changed

+9/−1 lines, 3 files

Files

CHANGELOG.md view
@@ -1,3 +1,8 @@+0.3.5+---++- Restore backward compatibility with older GHCs (see [#40](https://github.com/fizruk/telegram-bot-simple/pull/40));+ 0.3.4 --- 
src/Telegram/Bot/Simple/UpdateParser.hs view
@@ -27,6 +27,9 @@ instance Monad UpdateParser where   return = pure   UpdateParser x >>= f = UpdateParser (\u -> x u >>= flip runUpdateParser u . f)+#if !MIN_VERSION_base(4,13,0)+  fail _ = empty+#endif  #if MIN_VERSION_base(4,13,0) instance MonadFail UpdateParser where
telegram-bot-simple.cabal view
@@ -7,7 +7,7 @@ -- hash: 6d52edc3fb6015df0405b5a83558655525a8de69bd624202d18729eacbb353a1  name:           telegram-bot-simple-version:        0.3.4+version:        0.3.5 synopsis:       Easy to use library for building Telegram bots. description:    Please see the README on Github at <https://github.com/fizruk/telegram-bot-simple#readme> category:       Web