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.17.0 #172

Merged
merged 5 commits into from
Aug 8, 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
13 changes: 0 additions & 13 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,19 +198,6 @@ jobs:
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}

announce-mastodon:
name: Announce to Mastodon
runs-on: ubuntu-latest
needs: [ deploy-github-releases, extract-version-number ]
if: ${{ inputs.announce == true }}
steps:
- name: Announce to Mastodon
uses: rzr/fediverse-action@8506cb8a3052fd34b0d93a244888a81c233abf88
with:
access-token: ${{ secrets.MASTODON_TOKEN }}
host: 'anvil.social'
message: "${{ inputs.project-name }} v${{ needs.extract-version-number.outputs.version }} has been released! ${{ needs.deploy-github-releases.outputs.release-url }}"

sync-develop:
name: Sync develop
runs-on: ubuntu-latest
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.17.0] - 2024-08-08

### Changed

- Updated NeoForge and Fabric to Minecraft 1.21.1.

### Fixed

- Javadoc failing to generate.
- Mastodon announcements have been removed as anvil.social is no longer online.

## [0.16.9] - 2024-07-25

### Fixed
Expand Down Expand Up @@ -351,7 +362,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.16.9...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.17.0...HEAD

[0.17.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.9...v0.17.0

[0.16.9]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.8...v0.16.9

Expand Down
2 changes: 1 addition & 1 deletion refinedarchitect-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repositories {
}

dependencies {
implementation("net.neoforged:moddev-gradle:0.1.122")
implementation("net.neoforged:moddev-gradle:2.0.5-beta")
implementation("fabric-loom:fabric-loom.gradle.plugin:1.7-SNAPSHOT")
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")
Expand Down
2 changes: 1 addition & 1 deletion refinedarchitect-plugin/src/main/kotlin/FabricExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ open class FabricExtension(private val project: Project) : BaseExtension(project
project.dependencies.add("minecraft", "com.mojang:minecraft:${mcVersion}")
project.dependencies.add("mappings", project.extensions.getByType<LoomGradleExtensionAPI>().layered() {
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-${mcVersion}:${parchmentVersion}@zip")
parchment("org.parchmentmc.data:parchment-${parchmentMcVersion}:${parchmentVersion}@zip")
})
project.dependencies.add("modImplementation", "net.fabricmc:fabric-loader:${fabricLoaderVersion}")
project.dependencies.add("modImplementation", "net.fabricmc.fabric-api:fabric-api:${fabricApiVersion}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ plugins {

tasks.register<Javadoc>("javadocAggregate") {
val projects = allprojects.filter { it.extra.has("refinedarchitect_javadoc") }
projects.forEach {
dependsOn(it.tasks.getByName("assemble"))
}
source(projects.flatMap { it.sourceSets["main"].allJava })
classpath = files(projects.flatMap { it.sourceSets["main"].compileClasspath })
setDestinationDir(file("build/docs/javadoc"))
Expand Down
13 changes: 7 additions & 6 deletions refinedarchitect-plugin/src/main/kotlin/versions.kt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
const val mcVersion = "1.21"
const val mcVersion = "1.21.1"
const val parchmentMcVersion = "1.21"
// See: https://projects.neoforged.net/neoforged/neoforge
const val neoForgeVersion = "21.0.112-beta"
const val fabricLoaderVersion = "0.15.11"
const val fabricApiVersion = "0.100.4+1.21"
const val parchmentVersion = "2024.07.07"
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"
// See: https://projects.neoforged.net/neoforged/neoform
const val nfVersion = "1.21-20240613.152323"
const val nfVersion = "1.21.1-20240808.144430"
const val javaVersion = 21
Loading