Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamalam360 committed Jun 11, 2023
1 parent c5e7952 commit 57fb3c3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
8 changes: 2 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
## Changelog

### Features
No changes other than tag update.

### Fixes

Closed issues: None.

[Full Changelog](https://github.com/JamCoreModding/tutorial-lib/compare/...)
[Full Changelog](https://github.com/JamCoreModding/tutorial-lib/compare/1.0.0...1.0.1+1.19.2)
10 changes: 8 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,14 @@ java {
withJavadocJar()
}

tasks.withType(Javadoc::class.java) {
exclude("**/mixin/**")
tasks {
withType(Javadoc::class.java) {
exclude("**/mixin/**")
}

getByName("generateMetadataFileForMavenPublication") {
dependsOn("optimizeOutputsOfRemapJar")
}
}

sourceSets {
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ org.gradle.parallel=true

# Name of your built jar
archive_base_name=tutorial-lib
mod_version=1.0.0
release_name=V1.0.0 [1.19.2]
mod_version=1.0.1+1.19.2
release_name=V1.0.1 [1.19.2]
supported_versions=1.19.2

# Used for releasing GitHub releases
github_user=JamCoreModding
github_repo=tutorial-lib
release_branch=1.19.2
release_branch=main
publish_to_maven=true

0 comments on commit 57fb3c3

Please sign in to comment.