From a2ece89075936cca62c4b1392cbf2bf98eb1c3f6 Mon Sep 17 00:00:00 2001 From: ex0ns Date: Fri, 29 Mar 2024 14:30:54 +0000 Subject: [PATCH] release: version 5.8.0 (#384) --- README.md | 8 ++++---- build.sc | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 47c2d9c4..239b1d16 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.7.1" +libraryDependencies += "com.bot4s" %% "telegram-core" % "5.8.0" // Extra goodies: Webhooks, support for games, bindings for actors. -libraryDependencies += "com.bot4s" %% "telegram-akka" % "5.7.1" +libraryDependencies += "com.bot4s" %% "telegram-akka" % "5.8.0" ``` For [mill](https://com-lihaoyi.github.io/mill) add to your `build.sc` project deps: ```scala -ivy"com.bot4s::telegram-core:5.7.1", // core -ivy"com.bot4s::telegram-akka:5.7.1" // extra goodies +ivy"com.bot4s::telegram-core:5.8.0", // core +ivy"com.bot4s::telegram-akka:5.8.0" // extra goodies ``` ## Leaking bot tokens diff --git a/build.sc b/build.sc index 2c95e5b5..999031ab 100644 --- a/build.sc +++ b/build.sc @@ -133,7 +133,7 @@ trait Bot4sTelegramCrossPlatform extends Bot4sTelegramModule { trait Publishable extends PublishModule { - override def publishVersion = "5.7.1" + override def publishVersion = "5.8.0" def pomSettings = PomSettings( description = "Telegram Bot API wrapper for Scala",