From 5e64ed36a78403953b15a64fed25866ffa3bbd80 Mon Sep 17 00:00:00 2001 From: ex0ns Date: Wed, 17 Jul 2024 20:44:25 +0200 Subject: [PATCH] release: version 5.8.3 (#412) --- README.md | 8 ++++---- build.sc | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d4846be9..998d9624 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.2" +libraryDependencies += "com.bot4s" %% "telegram-core" % "5.8.3" // Extra goodies: Webhooks, support for games, bindings for actors. -libraryDependencies += "com.bot4s" %% "telegram-akka" % "5.8.2" +libraryDependencies += "com.bot4s" %% "telegram-akka" % "5.8.3" ``` For [mill](https://com-lihaoyi.github.io/mill) add to your `build.sc` project deps: ```scala -ivy"com.bot4s::telegram-core:5.8.2", // core -ivy"com.bot4s::telegram-akka:5.8.2" // extra goodies +ivy"com.bot4s::telegram-core:5.8.3", // core +ivy"com.bot4s::telegram-akka:5.8.3" // extra goodies ``` ## Leaking bot tokens diff --git a/build.sc b/build.sc index 3c270e80..f6396ee1 100644 --- a/build.sc +++ b/build.sc @@ -132,7 +132,7 @@ trait Bot4sTelegramCrossPlatform extends Bot4sTelegramModule { trait Publishable extends PublishModule { - override def publishVersion = "5.8.2" + override def publishVersion = "5.8.3" def pomSettings = PomSettings( description = "Telegram Bot API wrapper for Scala",