Skip to content

Commit 710e2cc

Browse files
committed
0.2
1 parent c407363 commit 710e2cc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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.1"
8+
libraryDependencies += "net.katsstuff" %% "ackCord" % "0.2"
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.1"
62+
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.2"
6363
```
6464

6565
### Command handlers

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ lazy val ackCord = project
4040
commonSettings,
4141
publishSettings,
4242
name := "ackcord",
43-
version := "0.1",
43+
version := "0.2",
4444
resolvers += JCenterRepository,
4545
libraryDependencies ++= Seq(
4646
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
@@ -74,7 +74,7 @@ lazy val ackCordCommands = project
7474
commonSettings,
7575
publishSettings,
7676
name := "ackcord-commands",
77-
version := "0.1",
77+
version := "0.2",
7878
description := "AckCord-commands is an extension to AckCord to allow one to easily define commands"
7979
)
8080
.dependsOn(ackCord)

0 commit comments

Comments
 (0)