Skip to content

Commit

Permalink
🚀 1.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Söderberg authored and Citymonstret committed Jan 16, 2021
1 parent 7d46e64 commit 3454cbe
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- More abstract description concept ([#207](https://github.com/Incendo/cloud/pull/207))
- Predicate permissions ([#210](https://github.com/Incendo/cloud/pull/210))
- Injection services ([#211](https://github.com/Incendo/cloud/pull/211))
- Sponge v7 support ([#212](https://github.com/Incendo/cloud/pull/211))
- Logical `AND` and `OR` operations for `CommandPermission`s ([#213](https://github.com/Incendo/cloud/pull/213))

### Changed
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-PLATFORM</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</dependency>
<!--
~ Optional: Allows you to use annotated methods
Expand All @@ -125,7 +125,7 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-annotations</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</dependency>
```

Expand Down Expand Up @@ -186,7 +186,7 @@ repositories {

```groovy
dependencies {
implementation 'cloud.commandframework:cloud-PLATFORM:1.4.0-SNAPSHOT'
implementation 'cloud.commandframework:cloud-PLATFORM:1.4.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ allprojects {
apply<LicenseBasePlugin>()

group = "cloud.commandframework"
version = "1.4.0-SNAPSHOT"
version = "1.4.0"
description = "Command framework and dispatcher for the JVM"

/* Disable checkstyle on tests */
Expand Down
20 changes: 10 additions & 10 deletions cloud-minecraft/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ Bukkit mappings for cloud. If `commodore` is present on the classpath and the se
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-bukkit</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</dependency>
```

**gradle**:
```groovy
dependencies {
implementation 'cloud.commandframework:cloud-bukkit:1.4.0-SNAPSHOT'
implementation 'cloud.commandframework:cloud-bukkit:1.4.0'
}
```

Expand Down Expand Up @@ -86,14 +86,14 @@ An example plugin using the `cloud-paper` API can be found [here](https://github
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-paper</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</dependency>
```

**gradle**:
```groovy
dependencies {
implementation 'cloud.commandframework:cloud-paper:1.4.0-SNAPSHOT'
implementation 'cloud.commandframework:cloud-paper:1.4.0'
}
```

Expand All @@ -109,14 +109,14 @@ BungeeCord mappings for cloud.
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-bungee</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</dependency>
```

**gradle**:
```groovy
dependencies {
implementation 'cloud.commandframework:cloud-bungee:1.4.0-SNAPSHOT'
implementation 'cloud.commandframework:cloud-bungee:1.4.0'
}
```

Expand All @@ -138,14 +138,14 @@ cloud mappings for Velocity 1.1.0.
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-velocity</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</dependency>
```

**gradle**:
```groovy
dependencies {
implementation 'cloud.commandframework:cloud-velocity:1.4.0-SNAPSHOT'
implementation 'cloud.commandframework:cloud-velocity:1.4.0'
}
```

Expand All @@ -166,14 +166,14 @@ cloud mappings for CloudBurst 1.0.0-SNAPSHOT.
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-cloudburst</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</dependency>
```

**gradle**:
```groovy
dependencies {
implementation 'cloud.commandframework:cloud-velocity:1.4.0-SNAPSHOT'
implementation 'cloud.commandframework:cloud-velocity:1.4.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion cloud-services/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Rörledning is available on Maven Central:
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-services</artifactId>
<version>1.4.0-SNAPSHOT</version>
<version>1.4.0</version>
</dependency>
```

Expand Down

0 comments on commit 3454cbe

Please sign in to comment.