File tree 6 files changed +26
-22
lines changed
6 files changed +26
-22
lines changed Original file line number Diff line number Diff line change @@ -198,19 +198,6 @@ jobs:
198
198
env :
199
199
DISCORD_WEBHOOK : ${{ secrets.DISCORD_WEBHOOK }}
200
200
201
- announce-mastodon :
202
- name : Announce to Mastodon
203
- runs-on : ubuntu-latest
204
- needs : [ deploy-github-releases, extract-version-number ]
205
- if : ${{ inputs.announce == true }}
206
- steps :
207
- - name : Announce to Mastodon
208
- uses : rzr/fediverse-action@8506cb8a3052fd34b0d93a244888a81c233abf88
209
- with :
210
- access-token : ${{ secrets.MASTODON_TOKEN }}
211
- host : ' anvil.social'
212
- message : " ${{ inputs.project-name }} v${{ needs.extract-version-number.outputs.version }} has been released! ${{ needs.deploy-github-releases.outputs.release-url }}"
213
-
214
201
sync-develop :
215
202
name : Sync develop
216
203
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -7,6 +7,17 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.17.0] - 2024-08-08
11
+
12
+ ### Changed
13
+
14
+ - Updated NeoForge and Fabric to Minecraft 1.21.1.
15
+
16
+ ### Fixed
17
+
18
+ - Javadoc failing to generate.
19
+ - Mastodon announcements have been removed as anvil.social is no longer online.
20
+
10
21
## [ 0.16.9] - 2024-07-25
11
22
12
23
### Fixed
@@ -351,7 +362,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
351
362
- Gradle helpers for Fabric and Forge projects.
352
363
- CI workflows.
353
364
354
- [ Unreleased ] : https://github.com/refinedmods/refinedarchitect/compare/v0.16.9...HEAD
365
+ [ Unreleased ] : https://github.com/refinedmods/refinedarchitect/compare/v0.17.0...HEAD
366
+
367
+ [ 0.17.0 ] : https://github.com/refinedmods/refinedarchitect/compare/v0.16.9...v0.17.0
355
368
356
369
[ 0.16.9 ] : https://github.com/refinedmods/refinedarchitect/compare/v0.16.8...v0.16.9
357
370
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ repositories {
25
25
}
26
26
27
27
dependencies {
28
- implementation(" net.neoforged:moddev-gradle:0.1.122 " )
28
+ implementation(" net.neoforged:moddev-gradle:2.0.5-beta " )
29
29
implementation(" fabric-loom:fabric-loom.gradle.plugin:1.7-SNAPSHOT" )
30
30
implementation(" gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.1.8" )
31
31
implementation(" info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.15.0" )
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ open class FabricExtension(private val project: Project) : BaseExtension(project
15
15
project.dependencies.add(" minecraft" , " com.mojang:minecraft:${mcVersion} " )
16
16
project.dependencies.add(" mappings" , project.extensions.getByType<LoomGradleExtensionAPI >().layered() {
17
17
officialMojangMappings()
18
- parchment(" org.parchmentmc.data:parchment-${mcVersion } :${parchmentVersion} @zip" )
18
+ parchment(" org.parchmentmc.data:parchment-${parchmentMcVersion } :${parchmentVersion} @zip" )
19
19
})
20
20
project.dependencies.add(" modImplementation" , " net.fabricmc:fabric-loader:${fabricLoaderVersion} " )
21
21
project.dependencies.add(" modImplementation" , " net.fabricmc.fabric-api:fabric-api:${fabricApiVersion} " )
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ plugins {
7
7
8
8
tasks.register<Javadoc >(" javadocAggregate" ) {
9
9
val projects = allprojects.filter { it.extra.has(" refinedarchitect_javadoc" ) }
10
+ projects.forEach {
11
+ dependsOn(it.tasks.getByName(" assemble" ))
12
+ }
10
13
source(projects.flatMap { it.sourceSets[" main" ].allJava })
11
14
classpath = files(projects.flatMap { it.sourceSets[" main" ].compileClasspath })
12
15
setDestinationDir(file(" build/docs/javadoc" ))
Original file line number Diff line number Diff line change 1
- const val mcVersion = " 1.21"
1
+ const val mcVersion = " 1.21.1"
2
+ const val parchmentMcVersion = " 1.21"
2
3
// See: https://projects.neoforged.net/neoforged/neoforge
3
- const val neoForgeVersion = " 21.0.112-beta "
4
- const val fabricLoaderVersion = " 0.15.11 "
5
- const val fabricApiVersion = " 0.100.4 +1.21"
6
- const val parchmentVersion = " 2024.07.07 "
4
+ const val neoForgeVersion = " 21.1.1 "
5
+ const val fabricLoaderVersion = " 0.16.0 "
6
+ const val fabricApiVersion = " 0.102.0 +1.21.1 "
7
+ const val parchmentVersion = " 2024.07.28 "
7
8
// See: https://projects.neoforged.net/neoforged/neoform
8
- const val nfVersion = " 1.21-20240613.152323 "
9
+ const val nfVersion = " 1.21.1-20240808.144430 "
9
10
const val javaVersion = 21
You can’t perform that action at this time.
0 commit comments