[libgdx] Release 4.2.4

This commit is contained in:
Mario Zechner 2024-07-25 17:57:43 +02:00
parent be746e6a20
commit f9a8e31e1f
2 changed files with 15 additions and 1 deletions

14
spine-libgdx/publish.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
#
# 1. Set up PGP key for signing
# 2. Create ~/.gradle/gradle.properties
# 3. Add
# ossrhUsername=<sonatype-token-user-name>
# ossrhPassword=<sonatype-token>
# signing.gnupg.passphrase=<pgp-key-passphrase>
#
# After publishing via this script, log into https://oss.sonatype.org and release it manually after
# checks pass ("Close -> Release & Drop").
set -e
./gradlew publishReleasePublicationToSonaTypeRepository --info

View File

@ -3,7 +3,7 @@ project("spine-libgdx") {
apply plugin: "maven-publish"
apply plugin: "signing"
def libraryVersion = "4.2.3-SNAPSHOT" // Update as needed
def libraryVersion = "4.2.4"
dependencies {
implementation "com.badlogicgames.gdx:gdx:$libgdxVersion"