From de15b2d65f6ce684fd5de33939e02071b7e98a6e Mon Sep 17 00:00:00 2001 From: Xin Yang Date: Wed, 30 Nov 2022 15:15:01 -0800 Subject: [PATCH] Remove -SNAPSHOT for release v0.20.0 --- examples/pom.xml | 4 ++-- jupyter/tutorial/02_train_your_first_model.ipynb | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/pom.xml b/examples/pom.xml index 006d70dde10..41253e10835 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -5,12 +5,12 @@ ai.djl examples - 0.20.0-SNAPSHOT + 0.20.0 1.8 1.8 - 0.20.0-SNAPSHOT + 0.20.0 ai.djl.examples.inference.ObjectDetection diff --git a/jupyter/tutorial/02_train_your_first_model.ipynb b/jupyter/tutorial/02_train_your_first_model.ipynb index acac089c387..19206621640 100644 --- a/jupyter/tutorial/02_train_your_first_model.ipynb +++ b/jupyter/tutorial/02_train_your_first_model.ipynb @@ -20,13 +20,13 @@ "outputs": [], "source": [ "// Add the snapshot repository to get the DJL snapshot artifacts\n", - "%mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", + "// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n", "\n", "// Add the maven dependencies\n", - "%maven ai.djl:api:0.20.0-SNAPSHOT\n", - "%maven ai.djl:basicdataset:0.20.0-SNAPSHOT\n", - "%maven ai.djl:model-zoo:0.20.0-SNAPSHOT\n", - "%maven ai.djl.mxnet:mxnet-engine:0.20.0-SNAPSHOT\n", + "%maven ai.djl:api:0.20.0\n", + "%maven ai.djl:basicdataset:0.20.0\n", + "%maven ai.djl:model-zoo:0.20.0\n", + "%maven ai.djl.mxnet:mxnet-engine:0.20.0\n", "%maven org.slf4j:slf4j-simple:1.7.32" ] },