Skip to content

Commit 4df07c0

Browse files
committed
release: Version 1.6.0
1 parent f175ef8 commit 4df07c0

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi
117117
<dependency>
118118
<groupId>cloud.commandframework</groupId>
119119
<artifactId>cloud-PLATFORM</artifactId>
120-
<version>1.6.0-SNAPSHOT</version>
120+
<version>1.6.0</version>
121121
</dependency>
122122
<!--
123123
~ Optional: Allows you to use annotated methods
@@ -126,7 +126,7 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi
126126
<dependency>
127127
<groupId>cloud.commandframework</groupId>
128128
<artifactId>cloud-annotations</artifactId>
129-
<version>1.6.0-SNAPSHOT</version>
129+
<version>1.6.0</version>
130130
</dependency>
131131
```
132132

@@ -187,7 +187,7 @@ repositories {
187187

188188
```kotlin
189189
dependencies {
190-
implementation("cloud.commandframework", "cloud-PLATFORM", "1.6.0-SNAPSHOT")
190+
implementation("cloud.commandframework", "cloud-PLATFORM", "1.6.0")
191191
}
192192
```
193193

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "cloud.commandframework"
7-
version = "1.6.0-SNAPSHOT"
7+
version = "1.6.0"
88
description = "Command framework and dispatcher for the JVM"
99

1010
subprojects {

cloud-minecraft/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ mappings will be available.
2424
<dependency>
2525
<groupId>cloud.commandframework</groupId>
2626
<artifactId>cloud-bukkit</artifactId>
27-
<version>1.6.0-SNAPSHOT</version>
27+
<version>1.6.0</version>
2828
</dependency>
2929
```
3030

3131
**gradle**:
3232
```groovy
3333
dependencies {
34-
implementation 'cloud.commandframework:cloud-bukkit:1.6.0-SNAPSHOT'
34+
implementation 'cloud.commandframework:cloud-bukkit:1.6.0'
3535
}
3636
```
3737

@@ -93,14 +93,14 @@ mappings are available even without commodore present.
9393
<dependency>
9494
<groupId>cloud.commandframework</groupId>
9595
<artifactId>cloud-paper</artifactId>
96-
<version>1.6.0-SNAPSHOT</version>
96+
<version>1.6.0</version>
9797
</dependency>
9898
```
9999

100100
**gradle**:
101101
```groovy
102102
dependencies {
103-
implementation 'cloud.commandframework:cloud-paper:1.6.0-SNAPSHOT'
103+
implementation 'cloud.commandframework:cloud-paper:1.6.0'
104104
}
105105
```
106106

@@ -118,14 +118,14 @@ BungeeCord mappings for cloud.
118118
<dependency>
119119
<groupId>cloud.commandframework</groupId>
120120
<artifactId>cloud-bungee</artifactId>
121-
<version>1.6.0-SNAPSHOT</version>
121+
<version>1.6.0</version>
122122
</dependency>
123123
```
124124

125125
**gradle**:
126126
```groovy
127127
dependencies {
128-
implementation 'cloud.commandframework:cloud-bungee:1.6.0-SNAPSHOT'
128+
implementation 'cloud.commandframework:cloud-bungee:1.6.0'
129129
}
130130
```
131131

@@ -150,14 +150,14 @@ cloud mappings for Velocity 1.1.0.
150150
<dependency>
151151
<groupId>cloud.commandframework</groupId>
152152
<artifactId>cloud-velocity</artifactId>
153-
<version>1.6.0-SNAPSHOT</version>
153+
<version>1.6.0</version>
154154
</dependency>
155155
```
156156

157157
**gradle**:
158158
```groovy
159159
dependencies {
160-
implementation 'cloud.commandframework:cloud-velocity:1.6.0-SNAPSHOT'
160+
implementation 'cloud.commandframework:cloud-velocity:1.6.0'
161161
}
162162
```
163163

@@ -181,14 +181,14 @@ cloud mappings for CloudBurst 1.0.0-SNAPSHOT.
181181
<dependency>
182182
<groupId>cloud.commandframework</groupId>
183183
<artifactId>cloud-cloudburst</artifactId>
184-
<version>1.6.0-SNAPSHOT</version>
184+
<version>1.6.0</version>
185185
</dependency>
186186
```
187187

188188
**gradle**:
189189
```groovy
190190
dependencies {
191-
implementation 'cloud.commandframework:cloud-velocity:1.6.0-SNAPSHOT'
191+
implementation 'cloud.commandframework:cloud-velocity:1.6.0'
192192
}
193193
```
194194

@@ -212,7 +212,7 @@ cloud mappings for the Fabric mod loader for Minecraft 1.16+
212212
**gradle**:
213213
```groovy
214214
dependencies {
215-
modImplementation 'cloud.commandframework:cloud-fabric:1.6.0-SNAPSHOT'
215+
modImplementation 'cloud.commandframework:cloud-fabric:1.6.0'
216216
}
217217
```
218218

docs/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Alexander Söderberg <contact@alexander-soderberg.com>
33
v0.1.0, 2020-12-30
44
:sectnums:
5-
:cloud-version: 1.5.0
5+
:cloud-version: 1.6.0
66
:toc: left
77
:toclevels: 4
88
:icons: font

0 commit comments

Comments
 (0)