From 53f37ef34f2893fc9fe223bed694ffd24d2b93ee Mon Sep 17 00:00:00 2001 From: Andrey Prokopenko Date: Sun, 26 May 2024 14:46:51 +0200 Subject: [PATCH] Bump versions and update changelog --- README.md | 1 + telegram-bot-api/CHANGELOG.md | 4 ++++ telegram-bot-api/telegram-bot-api.cabal | 2 +- telegram-bot-simple/CHANGELOG.md | 5 +++++ telegram-bot-simple/README.md | 1 + telegram-bot-simple/telegram-bot-simple.cabal | 12 ++++++------ 6 files changed, 18 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 01ccf61..4dfdaba 100644 --- a/README.md +++ b/README.md @@ -51,5 +51,6 @@ You can use a [Nix flake](https://wiki.nixos.org/wiki/Flakes) from this repo to | 0.12 | 6.7.1 | | 0.13 | 7.0 | | 0.14 | 7.3 | +| 0.14.1 | 7.3.1 | _Nick_ diff --git a/telegram-bot-api/CHANGELOG.md b/telegram-bot-api/CHANGELOG.md index 3200ea7..1601537 100644 --- a/telegram-bot-api/CHANGELOG.md +++ b/telegram-bot-api/CHANGELOG.md @@ -1,5 +1,9 @@ # telegram-bot-api +## 7.3.1 -- 2024-05-26 + +- Fix parsers for `InlineQueryResult`, `BackgroundType`, `ChatBoostSource`, `MessageOrigin`. + ## 7.3 -- 2024-05-25 - Drop support GHC 8.10, 9.0, add support GHC 9.8, 9.10 (see [#182](https://github.com/fizruk/telegram-bot-simple/pull/182)). diff --git a/telegram-bot-api/telegram-bot-api.cabal b/telegram-bot-api/telegram-bot-api.cabal index 3fd0b8e..543416e 100644 --- a/telegram-bot-api/telegram-bot-api.cabal +++ b/telegram-bot-api/telegram-bot-api.cabal @@ -1,7 +1,7 @@ cabal-version: 1.12 name: telegram-bot-api -version: 7.3 +version: 7.3.1 synopsis: Easy to use library for building Telegram bots. Exports Telegram Bot API. description: Please see the README on Github at . diff --git a/telegram-bot-simple/CHANGELOG.md b/telegram-bot-simple/CHANGELOG.md index c269711..36ea08f 100644 --- a/telegram-bot-simple/CHANGELOG.md +++ b/telegram-bot-simple/CHANGELOG.md @@ -1,3 +1,8 @@ +0.14.1 -- 2024-05-26 +--- + +- Support `telegram-bot-api == 7.3.1`. + 0.14 -- 2024-05-25 --- diff --git a/telegram-bot-simple/README.md b/telegram-bot-simple/README.md index 45a18a1..51fa230 100644 --- a/telegram-bot-simple/README.md +++ b/telegram-bot-simple/README.md @@ -32,5 +32,6 @@ Feel free to ping me on GitHub, file an issue or submit a PR :) | 0.12 | 6.7 | | 0.13 | 7.0 | | 0.14 | 7.3 | +| 0.14.1 | 7.3.1 | _Nick_ diff --git a/telegram-bot-simple/telegram-bot-simple.cabal b/telegram-bot-simple/telegram-bot-simple.cabal index f036c33..5a9918d 100644 --- a/telegram-bot-simple/telegram-bot-simple.cabal +++ b/telegram-bot-simple/telegram-bot-simple.cabal @@ -1,7 +1,7 @@ cabal-version: 1.12 name: telegram-bot-simple -version: 0.14 +version: 0.14.1 synopsis: Easy to use library for building Telegram bots. description: Please see the README on Github at category: Web @@ -70,7 +70,7 @@ library , split , stm , template-haskell - , telegram-bot-api >= 7.3 + , telegram-bot-api >= 7.3.1 , text , time , transformers @@ -117,7 +117,7 @@ executable example-echo-bot if flag(examples) build-depends: telegram-bot-simple - , telegram-bot-api >= 7.3 + , telegram-bot-api >= 7.3.1 else buildable: False @@ -159,7 +159,7 @@ executable example-echo-bot-webhook if flag(examples) build-depends: telegram-bot-simple - , telegram-bot-api >= 7.3 + , telegram-bot-api >= 7.3.1 else buildable: False @@ -212,7 +212,7 @@ executable example-game-bot , servant-server , signal , telegram-bot-simple - , telegram-bot-api >= 7.3 + , telegram-bot-api >= 7.3.1 , uuid , warp else @@ -256,6 +256,6 @@ executable example-todo-bot if flag(examples) build-depends: telegram-bot-simple - , telegram-bot-api >= 7.3 + , telegram-bot-api >= 7.3.1 else buildable: False