Skip to content

Commit

Permalink
Merge pull request #15 from refinedmods/release/0.2.0
Browse files Browse the repository at this point in the history
Release v0.2.0
  • Loading branch information
raoulvdberge authored Mar 20, 2023
2 parents 66782b2 + 64bf079 commit 2bb0c0e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,19 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0] - 2023-03-20

### Changed

- It's no longer necessary to provide the common project under the `compileApis` argument for `forgeProject` and
`fabricProject`.

## [0.1.0] - 2023-03-19

### Changed

- Publishing to Maven is now opt-in with `enablePublishing`.
- Announcing new releases is now opt-in.
- Announcing new releases is now configurable.

## [0.0.2] - 2023-03-19

Expand All @@ -25,10 +32,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Added

- Version catalogs.
- Fabric and Forge helpers.
- Gradle helpers for Checkstyle, Pitest, etc.
- Gradle helpers for Fabric and Forge projects.
- CI workflows.

[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.2.0...HEAD

[0.2.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.1.0...v0.2.0

[0.1.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.0.2...v0.1.0

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Refined Architect is a project that is used by all the mods of Refined Mods.

It contains GitHub workflows, version management and Gradle helpers to help making (cross-platform) mods easier.

See [refinedarchitect-template](https://github.com/refinedmods/refinedarchitect-template) for an example.

## Links

- [GitHub](https://github.com/refinedmods/refinedarchitect)
Expand Down
6 changes: 6 additions & 0 deletions helper.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ subprojects {
compileApis.collect {
source(project(it).sourceSets.main)
}
source(commonProject.sourceSets.main)
}
}
}
Expand All @@ -176,6 +177,7 @@ subprojects {
compileApis.collect {
source(project(it).sourceSets.main)
}
source(commonProject.sourceSets.main)
}
}
}
Expand All @@ -194,6 +196,7 @@ subprojects {
compileApis.collect {
implementation project(it)
}
implementation commonProject
}
processResources {
from commonProject.sourceSets.main.resources
Expand All @@ -205,6 +208,7 @@ subprojects {
compileApis.collect {
source(project(it).sourceSets.main.allSource)
}
source(commonProject.sourceSets.main.allSource)
}
jar.finalizedBy('reobfJar')
}
Expand Down Expand Up @@ -232,6 +236,7 @@ subprojects {
compileApis.collect {
implementation project(it)
}
implementation commonProject
}
processResources {
from commonProject.sourceSets.main.resources
Expand All @@ -240,6 +245,7 @@ subprojects {
compileApis.collect {
source(project(it).sourceSets.main.allSource)
}
source(commonProject.sourceSets.main.allSource)
}
jar {
from '../LICENSE.md'
Expand Down

0 comments on commit 2bb0c0e

Please sign in to comment.