Skip to content

Commit bc0cc6f

Browse files
jpenillaAlexander Söderberg
authored andcommitted
🔖 Bump version to 1.0.2
1 parent 3125e49 commit bc0cc6f

File tree

5 files changed

+21
-19
lines changed

5 files changed

+21
-19
lines changed

‎CHANGELOG.md‎

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@ 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-
## [Unreleased]
8-
9-
### Fixes
10-
- Fixes chained optionals not allowing the command to be executed when more than one optional is omitted
7+
## [1.0.2] - 2020-10-18
118

129
### Fixed
1310
- Fixed quoted parsing in StringArgument
1411
- Fixed wrong suggestions following invalid literals
12+
- Fixes chained optionals not allowing the command to be executed when more than one optional is omitted
13+
14+
### Changed
15+
- Updated adventure-api from 4.0.0 to 4.1.1
16+
- Updated Velocity module for breaking API changes (sendMessage needs an Identity)
1517

1618
## [1.0.1] - 2020-10-14
1719

‎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.0.1</version>
118+
<version>1.0.2</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.0.1</version>
127+
<version>1.0.2</version>
128128
</dependency>
129129
```
130130

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

186186
```groovy
187187
dependencies {
188-
implementation 'cloud.commandframework:cloud-PLATFORM:1.0.1'
188+
implementation 'cloud.commandframework:cloud-PLATFORM:1.0.2'
189189
}
190190
```
191191

‎build.gradle‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ allprojects {
3737
apply plugin: 'com.github.hierynomus.license'
3838

3939
group = 'cloud.commandframework'
40-
version = '1.0.1'
40+
version = '1.0.2'
4141
description = 'Command framework and dispatcher for the JVM'
4242

4343
/* Disable checkstyle on tests */

‎cloud-minecraft/README.md‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ Bukkit mappings for cloud. If `commodore` is present on the classpath and the se
2222
<dependency>
2323
<groupId>cloud.commandframework</groupId>
2424
<artifactId>cloud-bukkit</artifactId>
25-
<version>1.0.1</version>
25+
<version>1.0.2</version>
2626
</dependency>
2727
```
2828

2929
**gradle**:
3030
```groovy
3131
dependencies {
32-
implementation 'cloud.commandframework:cloud-bukkit:1.0.1'
32+
implementation 'cloud.commandframework:cloud-bukkit:1.0.2'
3333
}
3434
```
3535

@@ -86,14 +86,14 @@ An example plugin using the `cloud-paper` API can be found [here](https://github
8686
<dependency>
8787
<groupId>cloud.commandframework</groupId>
8888
<artifactId>cloud-paper</artifactId>
89-
<version>1.0.1</version>
89+
<version>1.0.2</version>
9090
</dependency>
9191
```
9292

9393
**gradle**:
9494
```groovy
9595
dependencies {
96-
implementation 'cloud.commandframework:cloud-paper:1.0.1'
96+
implementation 'cloud.commandframework:cloud-paper:1.0.2'
9797
}
9898
```
9999

@@ -109,14 +109,14 @@ BungeeCord mappings for cloud.
109109
<dependency>
110110
<groupId>cloud.commandframework</groupId>
111111
<artifactId>cloud-bungee</artifactId>
112-
<version>1.0.1</version>
112+
<version>1.0.2</version>
113113
</dependency>
114114
```
115115

116116
**gradle**:
117117
```groovy
118118
dependencies {
119-
implementation 'cloud.commandframework:cloud-bungee:1.0.1'
119+
implementation 'cloud.commandframework:cloud-bungee:1.0.2'
120120
}
121121
```
122122

@@ -138,14 +138,14 @@ cloud mappings for Velocity 1.1.0.
138138
<dependency>
139139
<groupId>cloud.commandframework</groupId>
140140
<artifactId>cloud-velocity</artifactId>
141-
<version>1.0.1</version>
141+
<version>1.0.2</version>
142142
</dependency>
143143
```
144144

145145
**gradle**:
146146
```groovy
147147
dependencies {
148-
implementation 'cloud.commandframework:cloud-velocity:1.0.1'
148+
implementation 'cloud.commandframework:cloud-velocity:1.0.2'
149149
}
150150
```
151151

@@ -166,14 +166,14 @@ cloud mappings for CloudBurst 1.0.0-SNAPSHOT.
166166
<dependency>
167167
<groupId>cloud.commandframework</groupId>
168168
<artifactId>cloud-cloudburst</artifactId>
169-
<version>1.0.1</version>
169+
<version>1.0.2</version>
170170
</dependency>
171171
```
172172

173173
**gradle**:
174174
```groovy
175175
dependencies {
176-
implementation 'cloud.commandframework:cloud-velocity:1.0.1'
176+
implementation 'cloud.commandframework:cloud-velocity:1.0.2'
177177
}
178178
```
179179

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ExamplePlugin
2-
version: 1.0.1
2+
version: 1.0.2
33
api-version: 1.13
44
main: cloud.commandframework.examples.bukkit.ExamplePlugin
55
depends: [Essentials]

0 commit comments

Comments
 (0)