🔖 Bump version to 1.0.2

This commit is contained in:
jmp 2020-10-18 12:59:48 -07:00 • committed by Alexander Söderberg
parent 3125e49632
commit bc0cc6fa4b
5 changed files with 21 additions and 19 deletions

View file

@ -4,14 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [1.0.2] - 2020-10-18
### Fixes
- Fixes chained optionals not allowing the command to be executed when more than one optional is omitted
### Fixed ### Fixed
- Fixed quoted parsing in StringArgument - Fixed quoted parsing in StringArgument
- Fixed wrong suggestions following invalid literals - Fixed wrong suggestions following invalid literals
- Fixes chained optionals not allowing the command to be executed when more than one optional is omitted
### Changed
- Updated adventure-api from 4.0.0 to 4.1.1
- Updated Velocity module for breaking API changes (sendMessage needs an Identity)
## [1.0.1] - 2020-10-14 ## [1.0.1] - 2020-10-14

View file

@ -115,7 +115,7 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi
<dependency> <dependency>
<groupId>cloud.commandframework</groupId> <groupId>cloud.commandframework</groupId>
<artifactId>cloud-PLATFORM</artifactId> <artifactId>cloud-PLATFORM</artifactId>
<version>1.0.1</version> <version>1.0.2</version>
</dependency> </dependency>
<!-- <!--
~ Optional: Allows you to use annotated methods ~ Optional: Allows you to use annotated methods
@ -124,7 +124,7 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi
<dependency> <dependency>
<groupId>cloud.commandframework</groupId> <groupId>cloud.commandframework</groupId>
<artifactId>cloud-annotations</artifactId> <artifactId>cloud-annotations</artifactId>
<version>1.0.1</version> <version>1.0.2</version>
</dependency> </dependency>
``` ```
@ -185,7 +185,7 @@ repositories {
```groovy ```groovy
dependencies { dependencies {
implementation 'cloud.commandframework:cloud-PLATFORM:1.0.1' implementation 'cloud.commandframework:cloud-PLATFORM:1.0.2'
} }
``` ```

View file

@ -37,7 +37,7 @@ allprojects {
apply plugin: 'com.github.hierynomus.license' apply plugin: 'com.github.hierynomus.license'
group = 'cloud.commandframework' group = 'cloud.commandframework'
version = '1.0.1' version = '1.0.2'
description = 'Command framework and dispatcher for the JVM' description = 'Command framework and dispatcher for the JVM'
/* Disable checkstyle on tests */ /* Disable checkstyle on tests */

View file

@ -22,14 +22,14 @@ Bukkit mappings for cloud. If `commodore` is present on the classpath and the se
<dependency> <dependency>
<groupId>cloud.commandframework</groupId> <groupId>cloud.commandframework</groupId>
<artifactId>cloud-bukkit</artifactId> <artifactId>cloud-bukkit</artifactId>
<version>1.0.1</version> <version>1.0.2</version>
</dependency> </dependency>
``` ```
**gradle**: **gradle**:
```groovy ```groovy
dependencies { dependencies {
implementation 'cloud.commandframework:cloud-bukkit:1.0.1' implementation 'cloud.commandframework:cloud-bukkit:1.0.2'
} }
``` ```
@ -86,14 +86,14 @@ An example plugin using the `cloud-paper` API can be found [here](https://github
<dependency> <dependency>
<groupId>cloud.commandframework</groupId> <groupId>cloud.commandframework</groupId>
<artifactId>cloud-paper</artifactId> <artifactId>cloud-paper</artifactId>
<version>1.0.1</version> <version>1.0.2</version>
</dependency> </dependency>
``` ```
**gradle**: **gradle**:
```groovy ```groovy
dependencies { dependencies {
implementation 'cloud.commandframework:cloud-paper:1.0.1' implementation 'cloud.commandframework:cloud-paper:1.0.2'
} }
``` ```
@ -109,14 +109,14 @@ BungeeCord mappings for cloud.
<dependency> <dependency>
<groupId>cloud.commandframework</groupId> <groupId>cloud.commandframework</groupId>
<artifactId>cloud-bungee</artifactId> <artifactId>cloud-bungee</artifactId>
<version>1.0.1</version> <version>1.0.2</version>
</dependency> </dependency>
``` ```
**gradle**: **gradle**:
```groovy ```groovy
dependencies { dependencies {
implementation 'cloud.commandframework:cloud-bungee:1.0.1' implementation 'cloud.commandframework:cloud-bungee:1.0.2'
} }
``` ```
@ -138,14 +138,14 @@ cloud mappings for Velocity 1.1.0.
<dependency> <dependency>
<groupId>cloud.commandframework</groupId> <groupId>cloud.commandframework</groupId>
<artifactId>cloud-velocity</artifactId> <artifactId>cloud-velocity</artifactId>
<version>1.0.1</version> <version>1.0.2</version>
</dependency> </dependency>
``` ```
**gradle**: **gradle**:
```groovy ```groovy
dependencies { dependencies {
implementation 'cloud.commandframework:cloud-velocity:1.0.1' implementation 'cloud.commandframework:cloud-velocity:1.0.2'
} }
``` ```
@ -166,14 +166,14 @@ cloud mappings for CloudBurst 1.0.0-SNAPSHOT.
<dependency> <dependency>
<groupId>cloud.commandframework</groupId> <groupId>cloud.commandframework</groupId>
<artifactId>cloud-cloudburst</artifactId> <artifactId>cloud-cloudburst</artifactId>
<version>1.0.1</version> <version>1.0.2</version>
</dependency> </dependency>
``` ```
**gradle**: **gradle**:
```groovy ```groovy
dependencies { dependencies {
implementation 'cloud.commandframework:cloud-velocity:1.0.1' implementation 'cloud.commandframework:cloud-velocity:1.0.2'
} }
``` ```

View file

@ -1,5 +1,5 @@
name: ExamplePlugin name: ExamplePlugin
version: 1.0.1 version: 1.0.2
api-version: 1.13 api-version: 1.13
main: cloud.commandframework.examples.bukkit.ExamplePlugin main: cloud.commandframework.examples.bukkit.ExamplePlugin
depends: [Essentials] depends: [Essentials]