Skip to content

Commit 3e469ae

Browse files
authored
Merge pull request #10 from FTBTeam/dev
Dev
2 parents 7ba2fae + fc62d35 commit 3e469ae

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.0.0]
8+
9+
### Changed
10+
* Ported to Minecraft 1.21. Support for Fabric and NeoForge.
11+
* Forge support may be re-added if/when Architectury adds support for Forge
12+
713
## [2.1.0]
814

915
### Changed

common/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ dependencies {
1313
// Remove the next line if you don't want to depend on the API
1414
modApi "dev.architectury:architectury:${rootProject.architectury_version}"
1515

16-
// modCompileOnly("mezz.jei:jei-${rootProject.minecraft_version}-common-api:${rootProject.jei_version}")
17-
modCompileOnly("mezz.jei:jei-1.20.4-common-api:${rootProject.jei_version}")
16+
modCompileOnly("mezz.jei:jei-${rootProject.minecraft_version}-common-api:${rootProject.jei_version}")
1817
}
1918

2019
tasks.register("buildApi", Jar) {

fabric/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ dependencies {
2525
// Remove the next line if you don't want to depend on the API
2626
modApi "dev.architectury:architectury-fabric:${rootProject.architectury_version}"
2727

28-
// modCompileOnly("mezz.jei:jei-${rootProject.minecraft_version}-fabric-api:${rootProject.jei_version}")
29-
// modCompileOnly("mezz.jei:jei-1.20.4-fabric-api:${rootProject.jei_version}")
28+
modCompileOnly("mezz.jei:jei-${rootProject.minecraft_version}-fabric-api:${rootProject.jei_version}")
3029

3130
common(project(path: ":common", configuration: "namedElements")) { transitive false }
3231
shadowCommon(project(path: ":common", configuration: "transformProductionFabric")) { transitive false }

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ neoforge_version=21.0.10-beta
2222
# https://maven.neoforged.net/#/releases/net/neoforged/fancymodloader/loader
2323
neoforge_loader_version=4
2424

25-
jei_version=17.3.0.49
25+
jei_version=19.0.0.3
2626

2727
curseforge_id=943925

neoforge/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ dependencies {
3030
// Remove the next line if you don't want to depend on the API
3131
modApi "dev.architectury:architectury-neoforge:${rootProject.architectury_version}"
3232

33-
// modCompileOnly("mezz.jei:jei-${rootProject.minecraft_version}-forge-api:${rootProject.jei_version}")
34-
// modCompileOnly("mezz.jei:jei-1.20.4-forge-api:${rootProject.jei_version}")
33+
modCompileOnly("mezz.jei:jei-${rootProject.minecraft_version}-neoforge-api:${rootProject.jei_version}")
3534

3635
common(project(path: ":common", configuration: "namedElements")) { transitive false }
3736
shadowCommon(project(path: ":common", configuration: "transformProductionNeoForge")) { transitive = false }

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ pluginManagement {
99

1010
include("common", "fabric", /*"forge",*/ "neoforge")
1111

12-
rootProject.name = "FTB-Filter-System-1.20.6"
12+
rootProject.name = "FTB-Filter-System-1.21"

0 commit comments

Comments
 (0)