Skip to content

Commit

Permalink
Prep for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
quinn-semele committed Apr 14, 2024
1 parent 08ebf11 commit 54b8349
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion build.gradle.kts
Expand Up @@ -18,8 +18,12 @@ plugins {

version = Versions.EXPANDEDSTORAGE

tasks.create(Constants.BUILD_MOD_TASK, BuildModTask::class.java)
tasks.create(Constants.BUILD_MOD_TASK, BuildModTask::class.java) {
group = "quinn semele"
}
val releaseTask = tasks.register(Constants.RELEASE_MOD_TASK, ReleaseModTask::class.java) {
group = "quinn semele"

dependsOn(":publishMods")

doLast {
Expand Down
Expand Up @@ -3,7 +3,7 @@ package semele.quinn.expandedstorage.plugin
import org.gradle.api.JavaVersion

object Versions {
const val EXPANDEDSTORAGE = "12.1.0-beta.2"
const val EXPANDEDSTORAGE = "12.1.0-beta.3"

// Generic
val JAVA = JavaVersion.VERSION_17
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
@@ -1 +1 @@
- Update Russian translations thanks to [@mpustovoi](https://github.com/quinn-semele/expanded-storage/pull/13).
- Removed some unused code.

0 comments on commit 54b8349

Please sign in to comment.