Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
isXander committed Mar 15, 2023
1 parent 369a7da commit 50d4030
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group = "dev.isxander"
version = "1.19.3+1.1"
version = "1.19.4+1.0"

loom {
splitEnvironmentSourceSets()
Expand Down Expand Up @@ -134,7 +134,8 @@ tasks.register<PythonTask>("checkBugStatuses") {
command = project.file("scripts/check_bug_fixes.py").toString()
}

var changelogText = file("changelogs/$minecraftVersion/${project.version}.md").takeIf { it.exists() }?.readText() ?: "No changelog is provided"
var changelogText = file("changelogs/$minecraftVersion/${project.version}.md").takeIf { it.exists() }?.readText()
?: "No changelog is provided"
file("changelogs/header.md").takeIf { it.exists() }?.readText()?.let { changelogText = it + "\n\n" + changelogText }

modrinth {
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ org.gradle.jvmargs=-Xmx4G
org.gradle.parallel=true
org.gradle.parallel.threads=2

minecraftVersion=1.19.4-rc2
minecraftVersion=1.19.4
fabricLoaderVersion=0.14.17
qmBuild=1

# Libraries
fabricApiVersion=0.75.1+1.19.4
yaclVersion=2.3.0+beta.3+update.1.19.4-SNAPSHOT
fabricApiVersion=0.76.0+1.19.4
yaclVersion=2.3.0
mixinExtrasVersion=0.1.1
modMenuVersion=5.0.0
modMenuVersion=6.1.0-rc.1

0 comments on commit 50d4030

Please sign in to comment.