Skip to content

Commit a98fb6f

Browse files
committed
0.4
1 parent e4b36a5 commit a98fb6f

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.3"
8+
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.4"
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.3"
62+
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.4"
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.3"
31+
val Version = "0.4"
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.3",
43+
version := "0.4",
4444
resolvers += JCenterRepository,
4545
libraryDependencies ++= Seq(
4646
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
@@ -76,7 +76,7 @@ lazy val ackCordCommands = project
7676
commonSettings,
7777
publishSettings,
7878
name := "ackcord-commands",
79-
version := "0.3",
79+
version := "0.4",
8080
description := "AckCord-commands is an extension to AckCord to allow one to easily define commands"
8181
)
8282
.dependsOn(ackCord)

0 commit comments

Comments
 (0)