Skip to content

Commit

Permalink
chore: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHillcox committed Dec 25, 2023
1 parent cc06bb5 commit 38c6582
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Just Hammers Changelog

## [82.0.1]

### Fixed

- Removed mixin debugs
- Fixed render issues with neoforge

## [82.0.0]

### Changed
Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ allprojects {

publishMods {
dryRun = providers.environmentVariable("CURSE_TOKEN").getOrNull() == null
changelog = file("./CHANGELOG.md").text
changelog = file("./CHANGELOG.md").text.replace("# Just Hammers Changelog", "").trim()
version = "${mod_version}"
type = STABLE

Expand Down Expand Up @@ -148,6 +148,8 @@ publishMods {
additionalFiles.from project.provider { project(":fabric").tasks.remapJar }.flatMap { it.archiveFile }
additionalFiles.from project.provider { project(":neoforge").tasks.remapJar }.flatMap { it.archiveFile }

announcementTitle = "[${minecraft_version}] Just Hammers ${mod_version}"

repository = "${project.github_repo}"
accessToken = providers.environmentVariable("GITHUB_TOKEN")
commitish = providers.environmentVariable("GITHUB_SHA").orElse("dryRun")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ minecraft_version=1.20.2
enabled_platforms=fabric,forge,neoforge

archives_base_name=just-hammers
mod_version=82.0.0
mod_version=82.0.1
maven_group=pro.mikey.mods

architectury_version=10.0.17
Expand Down

0 comments on commit 38c6582

Please sign in to comment.