Skip to content

Commit 0c70f56

Browse files
committed
0.6
1 parent 46ccc15 commit 0c70f56

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AckCord is a Scala library using Akka for the Discord API. Unlike many other lib
55

66
While AckCord is still in active development, you can try AckCord by adding this to your `build.sbt` file.
77
```scala
8-
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.5"
8+
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.6"
99
```
1010

1111
# Usage
@@ -59,7 +59,7 @@ context.actorOf(GuildRouter.props(MyActor.props, Some(nonGuildHandler)), "MyActo
5959
## Commands
6060
You probably also want some commands for your bot. AckCord has a seperate module that makes dealing with commands easier. First add a dependency on the command module.
6161
```scala
62-
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.5"
62+
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.6"
6363
```
6464

6565
### Command handlers

ackCord/src/main/scala/net/katsstuff/ackcord/AckCord.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ object AckCord {
2828
/**
2929
* Current version of AckCord
3030
*/
31-
val Version = "0.5"
31+
val Version = "0.6"
3232

3333
/**
3434
* Current Discord API version in use

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ lazy val ackCord = project
3232
commonSettings,
3333
publishSettings,
3434
name := "ackcord",
35-
version := "0.5",
35+
version := "0.6",
3636
resolvers += JCenterRepository,
3737
libraryDependencies ++= Seq(
3838
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
@@ -67,7 +67,7 @@ lazy val ackCordCommands = project
6767
commonSettings,
6868
publishSettings,
6969
name := "ackcord-commands",
70-
version := "0.5",
70+
version := "0.6",
7171
description := "AckCord-commands is an extension to AckCord to allow one to easily define commands"
7272
)
7373
.dependsOn(ackCord)

0 commit comments

Comments
 (0)