Skip to content

Commit 41335bf

Browse files
committed
0.14.0
1 parent 67704ab commit 41335bf

File tree

14 files changed

+18
-18
lines changed

14 files changed

+18
-18
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ For more info see the see the [microsite](https://ackcord.katsstuff.net/), the e
1010
While AckCord is still in active development, you can try AckCord by adding some of these to your `build.sbt` file.
1111
```scala
1212
resolvers += Resolver.JCenterRepository
13-
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.13.0" //For high level API, includes all the other modules
14-
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.13.0" //Low level core API
15-
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.13.0" //Low to mid level Commands API
16-
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.13.0" //Low level lavaplayer API
13+
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.14.0" //For high level API, includes all the other modules
14+
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.14.0" //Low level core API
15+
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.14.0" //Low to mid level Commands API
16+
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.14.0" //Low level lavaplayer API
1717
```
1818

1919
The AckCord module map

ackCord/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
This module exposes the high level API of AckCord, aiming to hide away most streams and provide a slightly simpler API for interacting with AckCord.
33

44
```scala
5-
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.13.0"
5+
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.14.0"
66
```

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ lazy val akkaVersion = "2.5.23"
44
lazy val akkaHttpVersion = "10.1.8"
55
lazy val circeVersion = "0.11.1"
66
lazy val akkaHttpCirceVersion = "1.25.2"
7-
lazy val ackCordVersion = "0.13.0"
7+
lazy val ackCordVersion = "0.14.0"
88

99
lazy val commonSettings = Seq(
1010
scalaVersion := "2.12.8",

commands/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
This module contains the basis for the default AckCord command system. Note that you need some sort of implementation to use this. If you're using the in memory cache, then you want to depend on `ackcord-commands-core`, not this.
33

44
```scala
5-
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.13.0"
5+
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.14.0"
66
```

commandsCore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
This module provides a way to use the AckCord commands system with the in memory cache. It's mostly glue code.
33

44
```scala
5-
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.13.0"
5+
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.14.0"
66
```

commandsNew/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
This module contains the new experimental command system for AckCord. This is still an experimental module, and may change drastically or be removed altogether.
33

44
```scala
5-
libraryDependencies += "net.katsstuff" %% "ackcord-commands-new" % "0.13.0"
5+
libraryDependencies += "net.katsstuff" %% "ackcord-commands-new" % "0.14.0"
66
```

core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
This module provides gives you an in memory cache for AckCord. In addition to that, it also passes you normalized models instead of the raw one gotten from the Discord API. This module also exposes the files GuildRouter and GuildStreams which lets you handle events from different guilds separately.
33

44
```scala
5-
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.13.0"
5+
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.14.0"
66
```

data/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
This module contains all the models found in the Discord API, but as they are gotten from the API, and normalized forms. Unlike all the other modules, this one is also cross built for Scala.JS, meaning that you can keep the models around on the client side of a webapp too.
44

55
```scala
6-
libraryDependencies += "net.katsstuff" %% "ackcord-data" % "0.13.0"
6+
libraryDependencies += "net.katsstuff" %% "ackcord-data" % "0.14.0"
77

88
//Or for Scala.Js stuff
9-
libraryDependencies += "net.katsstuff" %%% "ackcord-data" % "0.13.0"
9+
libraryDependencies += "net.katsstuff" %%% "ackcord-data" % "0.14.0"
1010
```

data/src/main/scala/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.13.0"
31+
val Version = "0.14.0"
3232

3333
/**
3434
* Current Discord API version in use
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ackcord: "0.13.0"
1+
ackcord: "0.14.0"

0 commit comments

Comments
 (0)