Skip to content

Commit

Permalink
0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Katrix committed Apr 26, 2020
1 parent 0f1bd1e commit 940db02
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ For more info see the see the [microsite](https://ackcord.katsstuff.net/), the e
Add AckCord to your project by adding these statements to your `build.sbt` file.
```scala
resolvers += Resolver.JCenterRepository
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.15.0" //For high level API, includes all the other modules
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.15.0" //Low level core API
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.15.0" //Low to mid level Commands API
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.15.0" //Low level lavaplayer API
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.16.0" //For high level API, includes all the other modules
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.16.0" //Low level core API
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.16.0" //Low to mid level Commands API
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.16.0" //Low level lavaplayer API
```

The AckCord module map
Expand Down
2 changes: 1 addition & 1 deletion ackCord/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
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.

```scala
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.14.0"
libraryDependencies += "net.katsstuff" %% "ackcord" % "0.16.0"
```
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbtcrossproject.CrossPlugin.autoImport.{CrossType, crossProject}
lazy val akkaVersion = "2.6.4"
lazy val akkaHttpVersion = "10.1.11"
lazy val circeVersion = "0.13.0"
lazy val ackCordVersion = "0.16.0-SNAPSHOT"
lazy val ackCordVersion = "0.16.0"

lazy val commonSettings = Seq(
scalaVersion := "2.13.1",
Expand Down Expand Up @@ -41,7 +41,7 @@ lazy val publishSettings = Seq(
s"ackcord-$old"
},
homepage := Some(url("https://github.com/Katrix/AckCord")),
developers := List(Developer("Katrix", "Nikolai Frid", "[email protected]", url("http://katsstuff.net/"))),
developers := List(Developer("Katrix", "Kathryn Frid", "[email protected]", url("http://katsstuff.net/"))),
autoAPIMappings := true
)

Expand Down
2 changes: 1 addition & 1 deletion commands/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
This module contains the new experimental command system for AckCord. This is still an experimental module, and may change drastically or be removed altogether.

```scala
libraryDependencies += "net.katsstuff" %% "ackcord-commands-new" % "0.14.0"
libraryDependencies += "net.katsstuff" %% "ackcord-commands-new" % "0.16.0"
```
2 changes: 1 addition & 1 deletion commandsOld/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
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.

```scala
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.14.0"
libraryDependencies += "net.katsstuff" %% "ackcord-commands" % "0.16.0"
```
2 changes: 1 addition & 1 deletion commandsOldCore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
This module provides a way to use the AckCord commands system with the in memory cache. It's mostly glue code.

```scala
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.14.0"
libraryDependencies += "net.katsstuff" %% "ackcord-commands-core" % "0.16.0"
```
2 changes: 1 addition & 1 deletion core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
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.

```scala
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.14.0"
libraryDependencies += "net.katsstuff" %% "ackcord-core" % "0.16.0"
```
4 changes: 2 additions & 2 deletions data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
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.

```scala
libraryDependencies += "net.katsstuff" %% "ackcord-data" % "0.14.0"
libraryDependencies += "net.katsstuff" %% "ackcord-data" % "0.16.0"

//Or for Scala.Js stuff
libraryDependencies += "net.katsstuff" %%% "ackcord-data" % "0.14.0"
libraryDependencies += "net.katsstuff" %%% "ackcord-data" % "0.16.0"
```
2 changes: 1 addition & 1 deletion data/src/main/scala/ackcord/AckCord.scala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ object AckCord {
/**
* Current version of AckCord
*/
val Version = "0.16.0-SNAPSHOT"
val Version = "0.16.0"

/**
* Current Discord API version in use
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/resources/microsite/data/versions.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ackcord: "0.16.0-SNAPSHOT"
ackcord: "0.16.0"
2 changes: 1 addition & 1 deletion gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
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.

```scala
libraryDependencies += "net.katsstuff" %% "ackcord-gateway" % "0.14.0"
libraryDependencies += "net.katsstuff" %% "ackcord-gateway" % "0.16.0"
```
2 changes: 1 addition & 1 deletion lavaplayerCore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
This module provides a way to use the Lavaplayer AckCord implementation with the in memory cache. It's mostly glue code.

```scala
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.14.0"
libraryDependencies += "net.katsstuff" %% "ackcord-lavaplayer-core" % "0.16.0"
```
2 changes: 1 addition & 1 deletion requests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
This module contains all the requests that can be made to the Discord API, in addition to accompanying code to make it easier to make requests to the Discord API.

```scala
libraryDependencies += "net.katsstuff" %% "ackcord-requests" % "0.14.0"
libraryDependencies += "net.katsstuff" %% "ackcord-requests" % "0.16.0"
```
2 changes: 1 addition & 1 deletion voice/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
This module contains all the code needed to connect to the Discord voice servers. If you want to send or receive sound from Discord, and you don't want to use Lavaplayer, this is where you go. Make sure to read the Discord docs on sending voice if you decide to do so.

```scala
libraryDependencies += "net.katsstuff" %% "ackcord-voice" % "0.14.0"
libraryDependencies += "net.katsstuff" %% "ackcord-voice" % "0.16.0"
```

0 comments on commit 940db02

Please sign in to comment.