diff --git a/android/README.md b/android/README.md index 4eecc64bc43..e57b4320346 100644 --- a/android/README.md +++ b/android/README.md @@ -16,7 +16,7 @@ In gradle, you can add the 5 modules in your dependencies: ```groovy dependencies { - implementation platform("ai.djl:bom:0.27.0") + implementation platform("ai.djl:bom:0.28.0") implementation "ai.djl:api" implementation "ai.djl.android:core" diff --git a/android/pytorch-native/README.md b/android/pytorch-native/README.md index fb435e9aa7b..3d675248775 100644 --- a/android/pytorch-native/README.md +++ b/android/pytorch-native/README.md @@ -124,7 +124,7 @@ cd .. ./gradlew compileAndroidJNI -Ppt_version=${PYTORCH_VERSION} ``` -`jnilib/0.27.0/android` folder will be created after build, and shared library will be uploaded to S3 in CI build +`jnilib/0.28.0/android` folder will be created after build, and shared library will be uploaded to S3 in CI build ## Build PyTorch android library (.aar) and publish to Sonatype snapshot repo @@ -138,7 +138,7 @@ cd ../../../android # To avoid download jni from S3, manually copy them mkdir -p pytorch-native/jnilib -cp -r ../engines/pytorch/pytorch-native/jnilib/0.27.0/android/* pytorch-native/jnilib +cp -r ../engines/pytorch/pytorch-native/jnilib/0.28.0/android/* pytorch-native/jnilib ./gradlew :pytorch-native:assemble # publish to local maven repo (~/.m2 folder) diff --git a/api/README.md b/api/README.md index fa29d149706..ff4878fb885 100644 --- a/api/README.md +++ b/api/README.md @@ -35,7 +35,7 @@ You can pull the DJL API from the central Maven repository by including the foll ai.djl api - 0.27.0 + 0.28.0 ``` @@ -45,7 +45,7 @@ For testing the current nightly build, use the following: ai.djl api - 0.28.0-SNAPSHOT + 0.29.0-SNAPSHOT ``` diff --git a/basicdataset/README.md b/basicdataset/README.md index 1c9ac977198..972550aa132 100644 --- a/basicdataset/README.md +++ b/basicdataset/README.md @@ -29,7 +29,7 @@ You can pull the module from the central Maven repository by including the follo ai.djl basicdataset - 0.27.0 + 0.28.0 ``` diff --git a/bom/README.md b/bom/README.md index ecb4f092234..194917493df 100644 --- a/bom/README.md +++ b/bom/README.md @@ -22,7 +22,7 @@ will need to mention the type as pom and the scope as import) as the following: ai.djl bom - 0.27.0 + 0.28.0 pom import @@ -38,7 +38,7 @@ will need to mention the type as pom and the scope as import) as the following: ai.djl bom - 0.27.0 + 0.28.0 pom import @@ -65,7 +65,7 @@ will need to mention the type as pom and the scope as import) as the following: - First you need add BOM into your build.gradle file as the following: ``` - implementation platform("ai.djl:bom:0.27.0") + implementation platform("ai.djl:bom:0.28.0") ``` - Then you import the desired DJL modules into to you pom.xml file (no version is needed): diff --git a/djl-zero/README.md b/djl-zero/README.md index 91c84554c58..74267e9eeeb 100644 --- a/djl-zero/README.md +++ b/djl-zero/README.md @@ -49,6 +49,6 @@ You can pull the module from the central Maven repository by including the follo ai.djl djl-zero - 0.27.0 + 0.28.0 ``` diff --git a/examples/pom.xml b/examples/pom.xml index 63f9f466283..c29ef32bcd9 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -5,12 +5,12 @@ ai.djl examples - 0.28.0-SNAPSHOT + 0.29.0-SNAPSHOT 11 11 - 0.28.0-SNAPSHOT + 0.29.0-SNAPSHOT ai.djl.examples.inference.cv.ObjectDetection diff --git a/gradle.properties b/gradle.properties index d21cc2fdc62..1453ae71128 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,7 +11,7 @@ systemProp.org.gradle.internal.http.connectionTimeout=60000 # FIXME: Workaround gradle publish issue: https://github.com/gradle/gradle/issues/11308 systemProp.org.gradle.internal.publish.checksums.insecure=true -djl_version=0.28.0 +djl_version=0.29.0 mxnet_version=1.9.1 pytorch_version=2.2.2 tensorflow_version=2.10.1