Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.20.0 #189

Merged
merged 3 commits into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.20.0] - 2024-11-24

### Changed

- Updated dependencies.

## [0.19.1] - 2024-09-10

### Fixed
Expand Down Expand Up @@ -390,7 +396,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Gradle helpers for Fabric and Forge projects.
- CI workflows.

[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.19.1...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.20.0...HEAD

[0.20.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.19.1...v0.20.0

[0.19.1]: https://github.com/refinedmods/refinedarchitect/compare/v0.19.0...v0.19.1

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ See [refinedarchitect-template](https://github.com/refinedmods/refinedarchitect-
- [Refined Mods on GitHub](https://github.com/refinedmods)
- [Discord](https://discordapp.com/invite/VYzsydb)
- [Twitter](https://twitter.com/refinedmods)
- [Mastodon](https://anvil.social/@refinedmods)

## Building

Expand Down
6 changes: 3 additions & 3 deletions refinedarchitect-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ repositories {
}

dependencies {
implementation("net.neoforged:moddev-gradle:2.0.27-beta")
implementation("fabric-loom:fabric-loom.gradle.plugin:1.8.0-alpha.9")
implementation("net.neoforged:moddev-gradle:2.0.47-beta")
implementation("fabric-loom:fabric-loom.gradle.plugin:1.8.12")
implementation("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.1.8")
implementation("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.15.0")
implementation("org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:4.4.1.3373")
implementation("me.modmuss50:mod-publish-plugin:0.7.3")
implementation("me.modmuss50:mod-publish-plugin:0.8.0")
}

publishing {
Expand Down
9 changes: 5 additions & 4 deletions refinedarchitect-plugin/src/main/kotlin/versions.kt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
const val mcVersion = "1.21.1"
const val parchmentMcVersion = "1.21"
// See: https://projects.neoforged.net/neoforged/neoforge
const val neoForgeVersion = "21.1.1"
const val fabricLoaderVersion = "0.16.0"
const val fabricApiVersion = "0.102.0+1.21.1"
const val parchmentVersion = "2024.07.28"
const val neoForgeVersion = "21.1.80"
// See: https://fabricmc.net/develop/
const val fabricLoaderVersion = "0.16.9"
const val fabricApiVersion = "0.109.0+1.21.1"
const val parchmentVersion = "2024.11.10"
// See: https://projects.neoforged.net/neoforged/neoform
const val nfVersion = "1.21.1-20240808.144430"
const val javaVersion = 21
12 changes: 6 additions & 6 deletions refinedarchitect-versioning/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,30 +13,30 @@ catalog {
val apiGuardian = version("apiGuardian", "1.1.2")
library("apiguardian", "org.apiguardian", "apiguardian-api").versionRef(apiGuardian)

val junit5 = version("junit5", "5.10.3")
val junit5 = version("junit5", "5.11.3")
library("junit-api", "org.junit.jupiter", "junit-jupiter-api").versionRef(junit5)
library("junit-engine", "org.junit.jupiter", "junit-jupiter-engine").versionRef(junit5)
library("junit-params", "org.junit.jupiter", "junit-jupiter-params").versionRef(junit5)

val assertJ = version("assertJ", "3.26.0")
val assertJ = version("assertJ", "3.26.3")
library("assertj", "org.assertj", "assertj-core").versionRef(assertJ)

val mockito = version("mockito", "5.12.0")
val mockito = version("mockito", "5.14.2")
library("mockito", "org.mockito", "mockito-core").versionRef(mockito)

val equalsVerifier = version("equalsverifier", "3.16.1")
val equalsVerifier = version("equalsverifier", "3.17.3")
library("equalsverifier", "nl.jqno.equalsverifier", "equalsverifier").versionRef(equalsVerifier)

// https://www.curseforge.com/minecraft/mc-mods/cloth-config/files
val clothConfig = version("cloth-config-fabric", "15.0.127")
val clothConfig = version("cloth-config-fabric", "15.0.140")
library("cloth-config", "me.shedaniel.cloth", "cloth-config-fabric").versionRef(clothConfig)

// https://github.com/TechReborn/Energy (https://maven.fabricmc.net/teamreborn/energy/)
val energy = version("teamreborn-energy", "4.1.0")
library("teamreborn-energy", "teamreborn", "energy").versionRef(energy)

// https://modrinth.com/mod/modmenu
val modmenu = version("modmenu", "11.0.1")
val modmenu = version("modmenu", "11.0.3")
library("modmenu", "com.terraformersmc", "modmenu").versionRef(modmenu)
}
}
Expand Down
Loading