diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b30a44b3..c880d8159 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [6.0.0] - 2020-02-21 +### Changed +- Updated for 1.18.1 +- Some changes to config, existing custom configs might need manual fixing + ## [5.0.2] - 2021-10-04 ### Fixed - Charm of Sinking and Crystal Heart effects not working properly @@ -214,10 +219,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release -[Unreleased]: https://github.com/florensie/artifacts-fabric/compare/v5.0.2...HEAD +[Unreleased]: https://github.com/florensie/artifacts-fabric/compare/v6.0.0...HEAD +[6.0.0]: https://github.com/florensie/artifacts-fabric/compare/v5.0.1...v6.0.0 [5.0.2]: https://github.com/florensie/artifacts-fabric/compare/v5.0.1...v5.0.2 [5.0.1]: https://github.com/florensie/artifacts-fabric/compare/v5.0.0...v5.0.1 -[5.0.0]: https://github.com/florensie/artifacts-fabric/compare/v4.0.1...v5.0.0 +[5.0.0]: https://github.com/florensie/artifacts-fabric/compare/v4.0.2...v5.0.0 +[4.0.2]: https://github.com/florensie/artifacts-fabric/compare/v4.0.1...v4.0.2 [4.0.1]: https://github.com/florensie/artifacts-fabric/compare/v4.0.0...v4.0.1 [4.0.0]: https://github.com/florensie/artifacts-fabric/compare/v3.2.1...v4.0.0 [3.2.1]: https://github.com/florensie/artifacts-fabric/compare/v3.2.0...v3.2.1 diff --git a/build.gradle b/build.gradle index 0db514d49..0bbe68d7b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'fabric-loom' version '0.10-SNAPSHOT' - id 'io.github.juuxel.loom-quiltflower-mini' version '1.2.1' + //id 'io.github.juuxel.loom-quiltflower-mini' version '1.2.1' id 'com.matthewprenger.cursegradle' version '1.4.0' } @@ -121,10 +121,10 @@ curseforge { releaseType = "release" changelogType = "markdown" - changelog = System.getenv("CHANGELOG") ?: "https://github.com/florensie/artifacts-fabric/blob/1.17-fabric/CHANGELOG.md" + changelog = System.getenv("CHANGELOG") ?: "https://github.com/florensie/artifacts-fabric/blob/master/CHANGELOG.md" - addGameVersion "1.17" - addGameVersion "1.17.1" + addGameVersion "1.18" + addGameVersion "1.18.1" addGameVersion "Fabric" relations { requiredDependency "fabric-api" @@ -136,7 +136,7 @@ curseforge { } mainArtifact(remapJar.archiveFile) { - displayName = "${project.mod_version} for Minecraft 1.17-1.17.1" + displayName = "${project.mod_version} for Minecraft 1.18-18.2" } afterEvaluate { diff --git a/gradle.properties b/gradle.properties index 818dbbd5a..7d89ae2da 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ minecraft_version=1.18.1 loader_version=0.12.12 # Mod Properties -mod_version=5.0.2 +mod_version=6.0.0 maven_group=artifacts archives_base_name=artifacts diff --git a/settings.gradle b/settings.gradle index fd268eeff..d23d48ea0 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,7 +1,6 @@ pluginManagement { repositories { maven { url = 'https://maven.fabricmc.net/' } - maven { url = 'https://server.bbkr.space/artifactory/libs-release/' } gradlePluginPortal() } }