diff --git a/CHANGELOG.md b/CHANGELOG.md index 34f9dac..29f7624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +**Beta 0.0.5** +* Improve Fabric JSON + **Beta 0.0.4** * Improve REI Plugin diff --git a/Jenkinsfile b/Jenkinsfile index 02b1935..39d89ba 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,6 +32,9 @@ pipeline { } steps { sh './gradlew publish' + withCredentials([usernameColonPassword(credentialsId: 'curseforge_key', variable: 'CURSEFORGE_KEY')]) { + sh './gradlew -Pcurseforge.api_key="${CURSEFORGE_KEY}" curseforge' + } } } } diff --git a/gradle.properties b/gradle.properties index 0f7aad2..de83333 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G fabric_loader_version = 0.9.0+build.204 # Mod Properties - mod_version = 0.0.4 + mod_version = 0.0.5 maven_group = com.thebrokenrail # Dependencies @@ -20,5 +20,5 @@ org.gradle.jvmargs = -Xmx1G cloth_config_version = 4.7.0-unstable autoconfig_version = 3.2.0-unstable libstructure_version = 1.4.1 - roughlyenoughitems_version = 5.1.0-unstable + roughlyenoughitems_version = 5.2.0 jetbrains_annotations_version = 19.0.0 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 5f86ce3..ba6e01e 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -5,7 +5,9 @@ "name": "EnergonRelics", "description": "This is a simple technology mod that adds a wireless energy system. It also adds several blocks and items to interact with and manipulate the energy system such as Solar Panels and Block Breakers.", "authors": [ - "TheBrokenRail" + "TheBrokenRail", + "PoeticRainbow (Artist)", + "azazelthedemonlord (Artist)" ], "contact": { "homepage": "https://thebrokenrail.com/",