Skip to content

Commit 26f105c

Browse files
authored
Merge pull request #195 from refinedmods/release/1.0.0
Release v1.0.0
2 parents 2ebcb86 + 770d173 commit 26f105c

File tree

6 files changed

+27
-4
lines changed

6 files changed

+27
-4
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
patreon: raoulvdberge
1+
patreon: raoulvdberge
2+
ko_fi: raoulvdberge

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [1.0.0] - 2025-03-27
11+
12+
### Added
13+
14+
- Set `RELEASE_DRY_RUN` to `true` to print debug info about the release and not actually release.
15+
16+
### Fixed
17+
18+
- Fixed sources jar not including all sources from `commonJava` configuration.
19+
1020
## [0.21.0] - 2025-01-28
1121

1222
### Added
@@ -406,7 +416,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
406416
- Gradle helpers for Fabric and Forge projects.
407417
- CI workflows.
408418

409-
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.21.0...HEAD
419+
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v1.0.0...HEAD
420+
421+
[1.0.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.21.0...v1.0.0
410422

411423
[0.21.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.20.0...v0.21.0
412424

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License (MIT)
22

3-
Copyright © 2023 - 2024 Refined Mods
3+
Copyright © 2023 - 2025 Refined Mods
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
66
documentation files (the “Software”), to deal in the Software without restriction, including without limitation the

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ See [refinedarchitect-template](https://github.com/refinedmods/refinedarchitect-
1616
- [Issues](https://github.com/refinedmods/refinedarchitect/issues)
1717
- [Refined Mods on GitHub](https://github.com/refinedmods)
1818
- [Discord](https://discordapp.com/invite/VYzsydb)
19-
- [Twitter](https://twitter.com/refinedmods)
2019

2120
## Building
2221

refinedarchitect-plugin/src/main/kotlin/BaseExtension.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ open class BaseExtension(private val project: Project) {
4040
file.set(remapJar.archiveFile)
4141
modLoaders.add("Fabric")
4242
}
43+
dryRun.set(System.getenv("RELEASE_DRY_RUN") == "true")
4344
type.set(
4445
if (project.version.toString()
4546
.contains("beta")

refinedarchitect-plugin/src/main/kotlin/refinedarchitect.gradle.kts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ configurations {
1818
isCanBeResolved = false
1919
isCanBeConsumed = true
2020
}
21+
create("commonJavaResolved") {
22+
isCanBeResolved = true
23+
isCanBeConsumed = false
24+
extendsFrom(configurations.getByName("commonJava"))
25+
}
2126
}
2227

2328
version = "0.0.0"
@@ -37,6 +42,11 @@ java {
3742
withSourcesJar()
3843
}
3944

45+
tasks.named<Jar>("sourcesJar") {
46+
from(sourceSets.main.get().allSource)
47+
from(configurations["commonJavaResolved"])
48+
}
49+
4050
dependencies {
4151
implementation("com.google.code.findbugs:jsr305:3.0.2")
4252
}

0 commit comments

Comments
 (0)