From cc1b9ea28ed06630c01fe2312c9f0ade4a5d249d Mon Sep 17 00:00:00 2001 From: James Seibel Date: Wed, 20 Oct 2021 21:19:40 -0500 Subject: [PATCH] change the version to a1.5.0 and fix a line in the readme --- Readme.md | 1 + build.gradle | 24 +++-------------------- src/main/java/com/seibel/lod/ModInfo.java | 2 +- src/main/resources/META-INF/mods.toml | 2 +- 4 files changed, 6 insertions(+), 23 deletions(-) diff --git a/Readme.md b/Readme.md index e3ae42077..1df9dd916 100644 --- a/Readme.md +++ b/Readme.md @@ -65,4 +65,5 @@ The source code can be 'created' with the `./eclipse` command and can be found i ## Open Source Acknowledgements XZ for Java (data compression) + https://tukaani.org/xz/java.html \ No newline at end of file diff --git a/build.gradle b/build.gradle index 9096a6957..0eaf90edd 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ apply plugin: 'org.spongepowered.mixin' apply plugin: 'eclipse' apply plugin: 'maven-publish' -version = 'b1.5.0' +version = 'a1.5.0' group = 'com.seibel.lod' archivesBaseName = 'Distant-Horizons_1.16.5' @@ -131,28 +131,10 @@ dependencies { // that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied. // The userdev artifact is a special name and will get all sorts of transformations applied to it. minecraft 'net.minecraftforge:forge:1.16.5-36.1.0' + + compile group: 'org.tukaani', name: 'xz', version: '1.9' - // these aren't needed right now - //implementation ('com.github.KaptainWutax:TerrainUtils:1.0.0'){ - // transitive = false - //} - //implementation ('com.github.KaptainWutax:BiomeUtils:1.0.0'){ - // transitive = false - //} - //implementation ('com.github.KaptainWutax:SeedUtils:-SNAPSHOT'){ - // transitive = false - //} - //implementation ('com.github.KaptainWutax:MCUtils:1.0.0'){ - // transitive = false - //} - //implementation ('com.github.KaptainWutax:NoiseUtils:1.0.0'){ - // transitive = false - //} - //implementation ('com.github.KaptainWutax:MathUtils:-SNAPSHOT'){ - // transitive = false - //} - // these were added to hopefully allow for cloning // configuredFeatures to allow for safe // multi threaded feature generation. Sadly I couldn't find diff --git a/src/main/java/com/seibel/lod/ModInfo.java b/src/main/java/com/seibel/lod/ModInfo.java index d5998f6af..5738d05b9 100644 --- a/src/main/java/com/seibel/lod/ModInfo.java +++ b/src/main/java/com/seibel/lod/ModInfo.java @@ -29,5 +29,5 @@ public final class ModInfo public static final String MODID = "lod"; public static final String MODNAME = "DistantHorizons"; public static final String MODAPI = "LodAPI"; - public static final String VERSION = "b1.5.0"; + public static final String VERSION = "a1.5.0"; } \ No newline at end of file diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 47a295fa3..1e9e40d2d 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -24,7 +24,7 @@ modId="lod" #mandatory #// The version number of the mod - there's a few well known ${} variables useable here or just hardcode it #//${file.jarVersion} will substitute the value of the Implementation-Version as read from the mod's JAR file metadata #// see the associated build.gradle script for how to populate this completely automatically during a build -version="b1.5.0" #mandatory +version="a1.5.0" #mandatory #// A display name for the mod displayName="Distant Horizons" #mandatory