Skip to content

Commit

Permalink
[Release] Forestry 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thedarkcolour committed Dec 21, 2024
1 parent c5697d7 commit fdcf25d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release for 1.20.1

on:
push:
branches: [ 'dev/1.19.x' ]
branches: [ '1.20.1' ]
workflow_dispatch:

jobs:
Expand Down
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ if (System.getenv("CURSEFORGE_TOKEN")) {
changelogType = "markdown"
changelog = getChangelog(version)

releaseType = "release"
releaseType = "alpha"

addGameVersion(project.minecraftVersion)
addGameVersion("Forge")
Expand All @@ -247,6 +247,7 @@ modrinth {
projectId = project.modrinthId
versionName = "Forestry: Community Edition $version"
versionNumber = version.toString()
versionType = "alpha"
gameVersions = [minecraftVersion]
loaders = ["forge"]
changelog = getChangelog(project.version)
Expand Down Expand Up @@ -280,11 +281,11 @@ static def getChangelog(Object version) {
def versionString = chunk.substring(0, lineTerminatorIndex)

if (versionString == version) {
return "## Ex Deorum $version\n" + chunk.substring(lineTerminatorIndex + 1)
return "## Forestry $version\n" + chunk.substring(lineTerminatorIndex + 1)
}
}

// Fallback in case this fails
return "Ex Deorum Update ${version}"
return "Forestry Update ${version}"
}

12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## Forestry 2.0.0
- Ported to Forge 1.20.1.
- Reorganized creative tabs.
- Renamed Forestry's Cherry species to Hill Cherry.
- Added Vanilla's Cherry trees to Forestry under the Cherry Blossom species.
- Fixed non-default height allele being ignored by saplings.
- Fixed rainmaker JEI recipe category icon being a rain tank instead of a rainmaker.
- Updated Ebony log texture.
- Updated Savanna hive texture.
- Removed the unused Wax Cast item that used to be for making Stained Glass.
- A bunch of other things!

## Forestry 1.0.14
- Add Falkory's textures (#33)
- Allow Cocoa plantations to automatically replant, thanks to ACGaming
Expand Down

0 comments on commit fdcf25d

Please sign in to comment.