Skip to content

Commit fda5244

Browse files
committed
release: Version 1.8.4
1 parent 19bbfb1 commit fda5244

File tree

4 files changed

+27
-15
lines changed

4 files changed

+27
-15
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.8.4]
8+
9+
### Fixed
10+
- Core: Flags not tab-completing unless string is empty ([#460](https://github.com/Incendo/cloud/pull/460))
11+
- Core: Parser registry not properly resolving `TypeToken`s ([#454](https://github.com/Incendo/cloud/pull/454))
12+
- Fabric: Pottery pattern registry overriding default string parser for annotations
13+
- Fabric: Log cause of CommandExecutionException in fabric's default exception handler ([#466](https://github.com/Incendo/cloud/pull/466))
14+
15+
### Changed
16+
- Core: Improved string parser supplier argument checking
17+
- Bukkit/Paper: Improve docs around Brigadier support
18+
719
## [1.8.3]
820

921
### Changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi
115115
<dependency>
116116
<groupId>cloud.commandframework</groupId>
117117
<artifactId>cloud-PLATFORM</artifactId>
118-
<version>1.8.3</version>
118+
<version>1.8.4</version>
119119
</dependency>
120120
<!--
121121
~ Optional: Allows you to use annotated methods
@@ -124,7 +124,7 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi
124124
<dependency>
125125
<groupId>cloud.commandframework</groupId>
126126
<artifactId>cloud-annotations</artifactId>
127-
<version>1.8.3</version>
127+
<version>1.8.4</version>
128128
</dependency>
129129
```
130130

@@ -185,7 +185,7 @@ repositories {
185185

186186
```kotlin
187187
dependencies {
188-
implementation("cloud.commandframework", "cloud-PLATFORM", "1.8.3")
188+
implementation("cloud.commandframework", "cloud-PLATFORM", "1.8.4")
189189
}
190190
```
191191

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.8.3</version>
27+
<version>1.8.4</version>
2828
</dependency>
2929
```
3030

3131
**gradle**:
3232
```groovy
3333
dependencies {
34-
implementation 'cloud.commandframework:cloud-bukkit:1.8.3'
34+
implementation 'cloud.commandframework:cloud-bukkit:1.8.4'
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.8.3</version>
96+
<version>1.8.4</version>
9797
</dependency>
9898
```
9999

100100
**gradle**:
101101
```groovy
102102
dependencies {
103-
implementation 'cloud.commandframework:cloud-paper:1.8.3'
103+
implementation 'cloud.commandframework:cloud-paper:1.8.4'
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.8.3</version>
121+
<version>1.8.4</version>
122122
</dependency>
123123
```
124124

125125
**gradle**:
126126
```groovy
127127
dependencies {
128-
implementation 'cloud.commandframework:cloud-bungee:1.8.3'
128+
implementation 'cloud.commandframework:cloud-bungee:1.8.4'
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.8.3</version>
153+
<version>1.8.4</version>
154154
</dependency>
155155
```
156156

157157
**gradle**:
158158
```groovy
159159
dependencies {
160-
implementation 'cloud.commandframework:cloud-velocity:1.8.3'
160+
implementation 'cloud.commandframework:cloud-velocity:1.8.4'
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.8.3</version>
184+
<version>1.8.4</version>
185185
</dependency>
186186
```
187187

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

@@ -217,7 +217,7 @@ the latest release of cloud.
217217
**gradle**:
218218
```groovy
219219
dependencies {
220-
modImplementation 'cloud.commandframework:cloud-fabric:1.8.3'
220+
modImplementation 'cloud.commandframework:cloud-fabric:1.8.4'
221221
}
222222
```
223223

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=cloud.commandframework
2-
version=1.8.4-SNAPSHOT
2+
version=1.8.4
33
description=Command framework and dispatcher for the JVM
44

55
org.gradle.caching=true

0 commit comments

Comments
 (0)