Skip to content

Commit e774805

Browse files
committed
0.17.0
1 parent 85bdae7 commit e774805

File tree

12 files changed

+18
-18
lines changed

12 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
Add AckCord to your project by adding these statements to your `build.sbt` file.
1111
```scala
1212
resolvers += Resolver.JCenterRepository
13-
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.16.1" //For high level API, includes all the other modules
14-
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.16.1" //Low level core API
15-
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.16.1" //Low to mid level Commands API
16-
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.16.1" //Low level lavaplayer API
13+
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.17.0" //For high level API, includes all the other modules
14+
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.17.0" //Low level core API
15+
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.17.0" //Low to mid level Commands API
16+
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.17.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.16.1"
5+
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.17.0"
66
```

build.sbt

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

88
lazy val commonSettings = Seq(
99
scalaVersion := "2.13.2",

commands/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# ackcord-commands-new
2-
This module contains the new experimental command system for AckCord. This is still an experimental module, and may change drastically or be removed altogether.
1+
# ackcord-commands
2+
This module contains the command system for AckCord.
33

44
```scala
5-
libraryDependencies += "net.katsstuff" %% "ackcord-commands-new" % "0.16.1"
5+
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.17.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.16.1"
5+
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.17.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.16.1"
6+
libraryDependencies += "net.katsstuff" %% "ackcord-data" % "0.17.0"
77

88
//Or for Scala.Js stuff
9-
libraryDependencies += "net.katsstuff" %%% "ackcord-data" % "0.16.1"
9+
libraryDependencies += "net.katsstuff" %%% "ackcord-data" % "0.17.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.17.0-M2"
31+
val Version = "0.17.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.16.1"
1+
ackcord: "0.17.0"

gateway/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
This module contains all the code needed to connect to the Discord gateway. If you want, you can connect directly to the gateway itself, passing it a Source and Sink to send and receive events. When doing so you receive the objects as raw as they can be. No cache, and no normalization.
44

55
```scala
6-
libraryDependencies += "net.katsstuff" %% "ackcord-gateway" % "0.16.1"
6+
libraryDependencies += "net.katsstuff" %% "ackcord-gateway" % "0.17.0"
77
```

lavaplayerCore/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 Lavaplayer AckCord implementation with the in memory cache. It's mostly glue code.
33

44
```scala
5-
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.16.1"
5+
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.17.0"
66
```

0 commit comments

Comments
 (0)