From b1f863b80207d1fc12ba20d5c504c6c0dcf7b358 Mon Sep 17 00:00:00 2001 From: ex0ns Date: Mon, 3 Jun 2024 16:14:53 +0200 Subject: [PATCH] release: version 5.8.2 (#404) --- README.md | 8 ++++---- build.sc | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) 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",