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.12.1 #111

Closed
wants to merge 5 commits into from
Closed
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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.12.1] - 2024-05-25

### Changed

- Updated Gradle.
- Include NeoForge testframework.

## [0.12.0] - 2024-05-25

### Added
Expand Down Expand Up @@ -210,7 +217,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.12.0...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.12.1...HEAD

[0.12.1]: https://github.com/refinedmods/refinedarchitect/compare/v0.12.0...v0.12.1

[0.12.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.11.5...v0.12.0

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
15 changes: 8 additions & 7 deletions helper.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ buildscript {
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.15.0'
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:4.4.1.3373'
classpath 'org.spongepowered:vanillagradle:0.2.1-SNAPSHOT'
classpath 'net.neoforged.gradle:userdev:7.0.80'
classpath 'fabric-loom:fabric-loom.gradle.plugin:1.5-SNAPSHOT'
classpath 'net.neoforged.gradle:userdev:7.0.134'
classpath 'fabric-loom:fabric-loom.gradle.plugin:1.6-SNAPSHOT'
classpath 'net.darkhax.curseforgegradle:CurseForgeGradle:1.1.18'
classpath 'com.modrinth.minotaur:Minotaur:2.+'
}
Expand Down Expand Up @@ -84,13 +84,13 @@ allprojects {

ext {
minecraftVersion = "1.20.4"
forgeVersion = "20.4.137-beta"
fabricLoaderVersion = "0.15.6"
fabricApiVersion = "0.95.1+1.20.4"
forgeVersion = "20.4.234"
fabricLoaderVersion = "0.15.11"
fabricApiVersion = "0.97.0+1.20.4"
// https://www.curseforge.com/minecraft/mc-mods/jei/files
jeiVersion = "17.2.0.41"
jeiVersion = "17.3.0.52"
// https://www.curseforge.com/minecraft/mc-mods/roughly-enough-items/files
reiVersion = "14.0.688"
reiVersion = "14.1.727"
architecturyVersion = "11.0.9" // dependency of rei
clothMathVersion = "0.6.1" // dependency of rei
clothConfigVersion = "13.0.121" // dependency of rei
Expand Down Expand Up @@ -212,6 +212,7 @@ allprojects {
}
dependencies {
implementation "net.neoforged:neoforge:${forgeVersion}"
testImplementation "net.neoforged:testframework:${forgeVersion}"
apis.collect {
implementation project(it)
}
Expand Down
Loading