Skip to content
This repository has been archived by the owner on Dec 8, 2024. It is now read-only.

Commit

Permalink
Publishing changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
MerchantPug committed Aug 16, 2024
1 parent cce2ed9 commit d210b02
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- Bump to a full release for CurseForge search-ability.
- This release also is no longer considered a snapshot on the maven.

### Bugfixes
- Fixed the custom projectile power/action modifying the shooter's tag instead of the projectile's tag with the `tag` field.
- Fixed Apugli power specific item conditions crashing the game.
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ publishing {
repositories {
maven {
name = "greenhouse"
url = "https://repo.greenhouse.house/snapshots"
url = "https://repo.greenhouse.house/releases"
credentials {
username System.getenv('MAVEN_USERNAME')
password System.getenv('MAVEN_PASSWORD')
Expand Down
7 changes: 3 additions & 4 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ plugins {
archivesBaseName = "${mod_name}"
version = "${rootProject.version}+${minecraft_version}-fabric"


loom {
accessWidenerPath.set(file("src/main/resources/apugli.accesswidener"))
mixin {
Expand Down Expand Up @@ -169,7 +168,7 @@ publishing {
repositories {
maven {
name = "greenhouse"
url = "https://repo.greenhouse.house/snapshots"
url = "https://repo.greenhouse.house/releases"
credentials {
username System.getenv('MAVEN_USERNAME')
password System.getenv('MAVEN_PASSWORD')
Expand All @@ -188,7 +187,7 @@ tasks.register('curseforge', TaskPublishCurseForge) {

def mainFile = upload(cf_project_id, remapJar)
mainFile.displayName = "Fabric v${rootProject.version}+${minecraft_version}"
mainFile.releaseType = "alpha"
mainFile.releaseType = "release"
mainFile.changelog = new File("$project.rootDir/CHANGELOG.md").getText('UTF-8')
mainFile.changelogType = "markdown"
fabric_mod_loaders.split(", ").each {
Expand All @@ -212,7 +211,7 @@ modrinth {
token = System.getenv("MODRINTH_TOKEN")
projectId = mr_project_id
versionNumber = "${version}"
versionType = "alpha"
versionType = "release"
versionName = "Fabric/Quilt v${rootProject.version}+${minecraft_version}"
changelog = new File("$project.rootDir/CHANGELOG.md").getText('UTF-8')
uploadFile = remapJar
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ parchment_version_loom=1.20.4:2024.04.14
# Mod Properties
mod_name=Apugli
mod_id=apugli
version=2.11.0-alpha.2
version=2.11.0
mod_author=MerchantPug, RaymondBlaze
group=net.merchantpug
archives_base_name=Apugli
Expand Down

0 comments on commit d210b02

Please sign in to comment.