Skip to content

Commit c02b0b9

Browse files
committed
0.11.0
1 parent 99cb6fd commit c02b0b9

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
# AckCord
2-
*You do what you want, exactly how you want it.*
2+
*Do what you want, exactly how you want it.*
33

4-
AckCord is a Scala library for Discord, using Akka. AckCord's focus is on letting choose the level of abstraction you want. Want to work with the raw events from the gateway? Or maybe you don't want to bother with any of the underlying implementation and technicalities. Works for that too. Only interested in the REST requests, then pull in that module and ignore the rest.
4+
[![Latest version](https://index.scala-lang.org/katrix/ackcord/ackcord/latest.svg)](https://index.scala-lang.org/katrix/ackcord/ackcord)
5+
6+
AckCord is a Scala Discord, using Akka. AckCord's focus is on letting choose the level of abstraction you want. Want to work with the raw events from the gateway? Sure. Maybe you don't want to bother with any of the underlying implementation and technicalities. Works for that too. Only interested in the REST requests, then pull in that module and ignore the rest. AckCord is fast, reactive, modular, and clean, focusing on letting you write good code.
7+
8+
For more info see the see the [microsite](https://ackcord.katsstuff.net/), the examples or the ScalaDoc(which you can find on the microsite).
59

610
While AckCord is still in active development, you can try AckCord by adding some of these to your `build.sbt` file.
711
```scala
8-
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.10.0" //For high level API, includes all the other modules
9-
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.10.0" //Low level core API
10-
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.10.0" //Low to mid level Commands API
11-
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.10.0" //Low level lavaplayer API
12+
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.11.0" //For high level API, includes all the other modules
13+
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.11.0" //Low level core API
14+
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.11.0" //Low to mid level Commands API
15+
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.11.0" //Low level lavaplayer API
1216
```
1317

14-
For more information, either see the [microsite](http://ackcord.katsstuff.net), the examples or the ScalaDoc.
15-
16-
Or you can just join the Discord server (we got cookies).
18+
Lastly, join our Discord server (we got cookies).
1719

1820
[![](https://discordapp.com/api/guilds/399373512072232961/embed.png?style=banner1)](https://discord.gg/5UH627u)

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import sbtcrossproject.CrossPlugin.autoImport.{crossProject, CrossType}
33
lazy val akkaVersion = "2.5.18"
44
lazy val akkaHttpVersion = "10.1.5"
55
lazy val circeVersion = "0.10.1"
6-
lazy val ackCordVersion = "0.11.0-RC2"
6+
lazy val ackCordVersion = "0.11.0"
77

88
lazy val commonSettings = Seq(
99
scalaVersion := "2.12.8",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ackcord: "0.10"
1+
ackcord: "0.11.0"

0 commit comments

Comments
 (0)