Skip to content

Commit

Permalink
Merge pull request #42 from refinedmods/release/0.5.1
Browse files Browse the repository at this point in the history
Release v0.5.1
  • Loading branch information
raoulvdberge authored Jul 3, 2023
2 parents dda4663 + 9341a0b commit 88cd449
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.5.1] - 2023-07-03

### Fixed

- Gradle helper for single-project builds.

## [0.5.0] - 2023-07-03

### Added
Expand Down Expand Up @@ -78,7 +84,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.5.0...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.5.1...HEAD

[0.5.1]: https://github.com/refinedmods/refinedarchitect/compare/v0.5.0...v0.5.1

[0.5.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.4.2...v0.5.0

Expand Down
6 changes: 1 addition & 5 deletions helper.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ allprojects {
mavenCentral()
}
apply plugin: 'jacoco'
}

subprojects {
version = '0.0.0'

if (System.getenv('GITHUB_SHA') != null) {
Expand Down Expand Up @@ -137,11 +135,9 @@ subprojects {
}
}

ext.enableCurseForgePublishing = { int projectId ->
ext.enableCurseForge = { int projectId ->
task publishCurseForge(type: net.darkhax.curseforgegradle.TaskPublishCurseForge) {
apiToken = System.getenv("CURSEFORGE_TOKEN")
debugMode = true

def mainFile = upload(projectId, jar)
mainFile.releaseType = project.version.toString().contains('beta') ? 'beta' : (project.version.toString().contains('alpha') ? 'alpha' : 'release')
mainFile.changelog = System.getenv("RELEASE_CHANGELOG")
Expand Down

0 comments on commit 88cd449

Please sign in to comment.