diff --git a/README.md b/README.md index b94e7007..d4846be9 100644 --- a/README.md +++ b/README.md @@ -67,17 +67,17 @@ Add to your `build.sbt` file: ```scala // Core with minimal dependencies, enough to spawn your first bot. -libraryDependencies += "com.bot4s" %% "telegram-core" % "5.8.1" +libraryDependencies += "com.bot4s" %% "telegram-core" % "5.8.2" // Extra goodies: Webhooks, support for games, bindings for actors. -libraryDependencies += "com.bot4s" %% "telegram-akka" % "5.8.1" +libraryDependencies += "com.bot4s" %% "telegram-akka" % "5.8.2" ``` For [mill](https://com-lihaoyi.github.io/mill) add to your `build.sc` project deps: ```scala -ivy"com.bot4s::telegram-core:5.8.1", // core -ivy"com.bot4s::telegram-akka:5.8.1" // extra goodies +ivy"com.bot4s::telegram-core:5.8.2", // core +ivy"com.bot4s::telegram-akka:5.8.2" // extra goodies ``` ## Leaking bot tokens diff --git a/build.sc b/build.sc index 4364efad..4a40f3ed 100644 --- a/build.sc +++ b/build.sc @@ -132,7 +132,7 @@ trait Bot4sTelegramCrossPlatform extends Bot4sTelegramModule { trait Publishable extends PublishModule { - override def publishVersion = "5.8.1" + override def publishVersion = "5.8.2" def pomSettings = PomSettings( description = "Telegram Bot API wrapper for Scala",