From 9761c0fadfd875941bb3ae3e748215aee3510b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20S=C3=B6derberg?= Date: Wed, 14 Oct 2020 02:25:49 +0200 Subject: [PATCH] :rocket: Version bump. --- README.md | 14 +++++++------- build.gradle | 2 +- cloud-minecraft/README.md | 20 ++++++++++---------- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 62fc0fbf..6e110cba 100644 --- a/README.md +++ b/README.md @@ -111,11 +111,11 @@ Release builds of Cloud are available through the Maven central repository. Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot repository](https://oss.sonatype.org/content/repositories/snapshots). **maven**: -```xml +```xml cloud.commandframework cloud-PLATFORM - 1.0.2 + 1.1.0-SNAPSHOT + sonatype-snapshots https://oss.sonatype.org/content/repositories/snapshots - + ``` If you are shading in cloud, it is highly recommended that you relocate all of our classes to prevent issues @@ -178,7 +178,7 @@ with conflicting dependencies: **gradle**: ```groovy repositories { - //maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' } // For snapshots + maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' } mavenCentral() } ``` diff --git a/build.gradle b/build.gradle index 1072daf9..76f58012 100644 --- a/build.gradle +++ b/build.gradle @@ -37,7 +37,7 @@ allprojects { apply plugin: 'com.github.hierynomus.license' group = 'cloud.commandframework' - version = '1.0.2' + version = '1.1.0-SNAPSHOT' description = 'Command framework and dispatcher for the JVM' /* Disable checkstyle on tests */ diff --git a/cloud-minecraft/README.md b/cloud-minecraft/README.md index db219eee..0f4049b8 100644 --- a/cloud-minecraft/README.md +++ b/cloud-minecraft/README.md @@ -22,14 +22,14 @@ Bukkit mappings for cloud. If `commodore` is present on the classpath and the se cloud.commandframework cloud-bukkit - 1.0.2 + 1.1.0-SNAPSHOT ``` **gradle**: ```groovy dependencies { - implementation 'cloud.commandframework:cloud-bukkit:1.0.2' + implementation 'cloud.commandframework:cloud-bukkit:1.1.0-SNAPSHOT' } ``` @@ -86,14 +86,14 @@ An example plugin using the `cloud-paper` API can be found [here](https://github cloud.commandframework cloud-paper - 1.0.2 + 1.1.0-SNAPSHOT ``` **gradle**: ```groovy dependencies { - implementation 'cloud.commandframework:cloud-paper:1.0.2' + implementation 'cloud.commandframework:cloud-paper:1.1.0-SNAPSHOT' } ``` @@ -109,14 +109,14 @@ BungeeCord mappings for cloud. cloud.commandframework cloud-bungee - 1.0.2 + 1.1.0-SNAPSHOT ``` **gradle**: ```groovy dependencies { - implementation 'cloud.commandframework:cloud-bungee:1.0.2' + implementation 'cloud.commandframework:cloud-bungee:1.1.0-SNAPSHOT' } ``` @@ -138,14 +138,14 @@ cloud mappings for Velocity 1.1.0. cloud.commandframework cloud-velocity - 1.0.2 + 1.1.0-SNAPSHOT ``` **gradle**: ```groovy dependencies { - implementation 'cloud.commandframework:cloud-velocity:1.0.2' + implementation 'cloud.commandframework:cloud-velocity:1.1.0-SNAPSHOT' } ``` @@ -166,14 +166,14 @@ cloud mappings for CloudBurst 1.0.0-SNAPSHOT. cloud.commandframework cloud-cloudburst - 1.0.2 + 1.1.0-SNAPSHOT ``` **gradle**: ```groovy dependencies { - implementation 'cloud.commandframework:cloud-velocity:1.0.2' + implementation 'cloud.commandframework:cloud-velocity:1.1.0-SNAPSHOT' } ```