@@ -61,25 +61,25 @@ Simple, extensible, strongly-typed wrapper for the [Telegram Bot API](https://co
6161
6262## Installation
6363
64- Since 6.0.0 ` telegram-core ` and ` telegram-akka ` are published for Scala 2.12, 2.13 and 3.
64+ Since 6.0.1 ` telegram-core ` and ` telegram-akka ` are published for Scala 2.12, 2.13 and 3.
6565
6666Add to your ` build.sbt ` file:
6767
6868``` scala
6969// Core with minimal dependencies, enough to spawn your first bot.
70- libraryDependencies += " com.bot4s" %% " telegram-core" % " 6.0.0 "
70+ libraryDependencies += " com.bot4s" %% " telegram-core" % " 6.0.1 "
7171
7272// Extra goodies: Webhooks, support for games, bindings for actors.
73- libraryDependencies += " com.bot4s" %% " telegram-akka" % " 6.0.0 "
73+ libraryDependencies += " com.bot4s" %% " telegram-akka" % " 6.0.1 "
7474```
7575
7676For [ mill] ( https://mill-build.org/mill/ ) add to your ` build.sc ` project deps:
7777
7878``` scala
7979// Core with minimal dependencies, enough to spawn your first bot.
80- ivy " com.bot4s::telegram-core:6.0.0 " ,
80+ ivy " com.bot4s::telegram-core:6.0.1 " ,
8181// Extra goodies: Webhooks, support for games, bindings for actors.
82- ivy " com.bot4s::telegram-akka:6.0.0 "
82+ ivy " com.bot4s::telegram-akka:6.0.1 "
8383```
8484
8585## Quickstart with scala-cli.
@@ -88,7 +88,7 @@ Replace `BOT_TOKEN` with your [Telegram bot token](https://core.telegram.org/bot
8888
8989``` scala
9090//> using scala 3.3.7
91- //> using dep " com.bot4s::telegram-core:6.0.0 "
91+ //> using dep " com.bot4s::telegram-core:6.0.1 "
9292//> using dep " com.softwaremill.sttp.client3::okhttp-backend:3.11.0"
9393//
9494import cats .syntax .functor .*
0 commit comments