Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: version 5.8.3 #412

Merged
merged 1 commit into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading