Skip to content

Commit d71cd0c

Browse files
authored
chore: release 6.0.1 (#511)
1 parent c6027d8 commit d71cd0c

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,25 +61,25 @@ Simple, extensible, strongly-typed wrapper for the [Telegram Bot API](https://co
6161

6262
## Installation
6363

64-
Since 6.0.0 `telegram-core` and `telegram-akka` are published for Scala 2.12, 2.13 and 3.
64+
Since 6.0.1 `telegram-core` and `telegram-akka` are published for Scala 2.12, 2.13 and 3.
6565

6666
Add to your `build.sbt` file:
6767

6868
```scala
6969
// Core with minimal dependencies, enough to spawn your first bot.
70-
libraryDependencies += "com.bot4s" %% "telegram-core" % "6.0.0"
70+
libraryDependencies += "com.bot4s" %% "telegram-core" % "6.0.1"
7171

7272
// Extra goodies: Webhooks, support for games, bindings for actors.
73-
libraryDependencies += "com.bot4s" %% "telegram-akka" % "6.0.0"
73+
libraryDependencies += "com.bot4s" %% "telegram-akka" % "6.0.1"
7474
```
7575

7676
For [mill](https://mill-build.org/mill/) add to your `build.sc` project deps:
7777

7878
```scala
7979
// Core with minimal dependencies, enough to spawn your first bot.
80-
ivy"com.bot4s::telegram-core:6.0.0",
80+
ivy"com.bot4s::telegram-core:6.0.1",
8181
// Extra goodies: Webhooks, support for games, bindings for actors.
82-
ivy"com.bot4s::telegram-akka:6.0.0"
82+
ivy"com.bot4s::telegram-akka:6.0.1"
8383
```
8484

8585
## Quickstart with scala-cli.
@@ -88,7 +88,7 @@ Replace `BOT_TOKEN` with your [Telegram bot token](https://core.telegram.org/bot
8888

8989
```scala
9090
//> using scala 3.3.7
91-
//> using dep "com.bot4s::telegram-core:6.0.0"
91+
//> using dep "com.bot4s::telegram-core:6.0.1"
9292
//> using dep "com.softwaremill.sttp.client3::okhttp-backend:3.11.0"
9393
//
9494
import cats.syntax.functor.*

build.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ trait Bot4sTelegramCrossPlatform extends Bot4sTelegramModule {
131131

132132
trait Publishable extends SonatypeCentralPublishModule {
133133

134-
override def publishVersion = "6.0.0"
134+
override def publishVersion = "6.0.1"
135135

136136
def pomSettings = PomSettings(
137137
description = "Telegram Bot API wrapper for Scala",

0 commit comments

Comments
 (0)