Skip to content

Commit

Permalink
Merge pull request #23 from refinedmods/release/0.3.0
Browse files Browse the repository at this point in the history
Release v0.3.0
  • Loading branch information
raoulvdberge authored May 29, 2023
2 parents 2bb0c0e + fb98e8f commit 3ab4392
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 19 deletions.
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.3.0] - 2023-05-29

### Changed

- Ported to Minecraft 1.19.4.

## [0.2.0] - 2023-03-20

### Changed
Expand Down Expand Up @@ -36,7 +42,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.2.0...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.3.0...HEAD

[0.3.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.2.0...v0.3.0

[0.2.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.1.0...v0.2.0

Expand Down
18 changes: 9 additions & 9 deletions helper.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ subprojects {
}

ext {
minecraftVersion = "1.19.3"
minecraftVersion = "1.19.4"
// https://www.curseforge.com/minecraft/mc-mods/jei/files
jeiVersion = "12.0.2.2"
jeiVersion = "13.1.0.11"
// https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items/files
reiVersion = "10.0.581"
architecturyVersion = "7.1.70" // dependency of rei
reiVersion = "11.0.603"
architecturyVersion = "8.1.73" // dependency of rei
clothMathVersion = "0.6.1" // dependency of rei
clothConfigVersion = "9.0.94" // dependency of rei
clothConfigVersion = "10.0.96" // dependency of rei
}

ext.enableMutationTesting = {
Expand Down Expand Up @@ -189,7 +189,7 @@ subprojects {
}
}
dependencies {
minecraft "net.minecraftforge:forge:${minecraftVersion}-44.1.5"
minecraft "net.minecraftforge:forge:${minecraftVersion}-45.0.64"
apis.collect {
implementation project(it)
}
Expand Down Expand Up @@ -225,10 +225,10 @@ subprojects {
minecraft "com.mojang:minecraft:${minecraftVersion}"
mappings loom.layered() {
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-${minecraftVersion}:2022.12.18@zip")
parchment("org.parchmentmc.data:parchment-${minecraftVersion}:2023.03.12@zip")
}
modImplementation "net.fabricmc:fabric-loader:0.14.14"
modImplementation "net.fabricmc.fabric-api:fabric-api:0.73.2+1.19.3"
modImplementation "net.fabricmc:fabric-loader:0.14.21"
modImplementation "net.fabricmc.fabric-api:fabric-api:0.82.0+1.19.4"
apis.collect {
implementation project(it)
include project(it)
Expand Down
8 changes: 4 additions & 4 deletions refinedarchitect-catalog-platform-fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ catalog {
library("cloth-config", "me.shedaniel.cloth", "cloth-config-fabric").version(clothConfigVersion)

// https://github.com/TechReborn/Energy
def energy = version("teamreborn-energy", "2.1.0")
def energy = version("teamreborn-energy", "3.0.0")
library("teamreborn-energy", "teamreborn", "energy").versionRef(energy)

library("rei-impl", "me.shedaniel", "RoughlyEnoughItems-fabric").version(reiVersion)
Expand All @@ -19,15 +19,15 @@ catalog {
library("jei-impl", "mezz.jei", "jei-${minecraftVersion}-fabric").version(jeiVersion)

// https://www.curseforge.com/minecraft/mc-mods/modmenu/files
def modmenu = version("modmenu", "5.0.2")
def modmenu = version("modmenu", "6.2.2")
library("modmenu", "com.terraformersmc", "modmenu").versionRef(modmenu)

// https://www.curseforge.com/minecraft/mc-mods/wthit/files
def wthit = version("wthit", "fabric-6.1.2")
def wthit = version("wthit", "fabric-7.3.1")
library("wthit", "mcp.mobius.waila", "wthit").versionRef(wthit)

// https://www.curseforge.com/minecraft/mc-mods/no-indium/files
def noIndium = version("noIndium", "1.1.0+1.19")
def noIndium = version("noIndium", "1.1.0+1.19.4")
library("noIndium", "me.luligabi", "NoIndium").versionRef(noIndium)
}
}
Expand Down
11 changes: 6 additions & 5 deletions refinedarchitect-catalog/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,27 @@ plugins {

catalog {
versionCatalog {
// Use the same slf4j API as MC to not break logging in the development environment.
// Use the same slf4j API as MC to not break logging in the development environment:
// https://launchermeta.mojang.com/mc/game/version_manifest_v2.json
def slf4j = version("slf4j", "2.0.1")
library("slf4j-api", "org.slf4j", "slf4j-api").versionRef(slf4j)
library("slf4j-impl", "org.slf4j", "slf4j-simple").versionRef(slf4j)

def apiGuardian = version("apiGuardian", "1.1.2")
library("apiguardian", "org.apiguardian", "apiguardian-api").versionRef(apiGuardian)

def junit5 = version("junit5", "5.9.2")
def junit5 = version("junit5", "5.9.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)

def assertJ = version("assertJ", "3.24.1")
def assertJ = version("assertJ", "3.24.2")
library("assertj", "org.assertj", "assertj-core").versionRef(assertJ)

def mockito = version("mockito", "5.0.0")
def mockito = version("mockito", "5.3.1")
library("mockito", "org.mockito", "mockito-core").versionRef(mockito)

def equalsVerifier = version("equalsverifier", "3.12.3")
def equalsVerifier = version("equalsverifier", "3.14.1")
library("equalsverifier", "nl.jqno.equalsverifier", "equalsverifier").versionRef(equalsVerifier)
}
}
Expand Down

0 comments on commit 3ab4392

Please sign in to comment.