diff --git a/CHANGELOG.md b/CHANGELOG.md index be03a6e..3c73970 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.13.3] - 2024-06-15 + +### Fixed + +- Declare Fabric APIs and common project as API instead of implementation. + ## [0.13.2] - 2024-06-09 ### Fixed @@ -235,7 +241,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.13.2...HEAD +[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.13.3...HEAD + +[0.13.3]: https://github.com/refinedmods/refinedarchitect/compare/v0.13.2...v0.13.3 [0.13.2]: https://github.com/refinedmods/refinedarchitect/compare/v0.13.1...v0.13.2 diff --git a/helper.gradle b/helper.gradle index 60f883f..20a9432 100644 --- a/helper.gradle +++ b/helper.gradle @@ -255,14 +255,14 @@ allprojects { modImplementation "net.fabricmc:fabric-loader:${fabricLoaderVersion}" modImplementation "net.fabricmc.fabric-api:fabric-api:${fabricApiVersion}" apis.collect { - implementation project(it) + api project(it) include project(it) } compileApis.collect { - implementation project(it) + api project(it) } if (commonProject != null) { - implementation commonProject + modApi commonProject } } processResources {