Skip to content

Commit 144d6ce

Browse files
committed
0.3
1 parent cb4c9c6 commit 144d6ce

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.2"
8+
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.3"
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.2"
62+
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.3"
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.1"
31+
val Version = "0.3"
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
@@ -40,7 +40,7 @@ lazy val ackCord = project
4040
commonSettings,
4141
publishSettings,
4242
name := "ackcord",
43-
version := "0.2",
43+
version := "0.3",
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.2",
77+
version := "0.3",
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)