Skip to content

Commit

Permalink
Remove -SNAPSHOT for release v0.5.0
Browse files Browse the repository at this point in the history
Change-Id: I56d0404fdf602b19f9fb867ed5fd49835ec46ef8
  • Loading branch information
roywei committed May 12, 2020
1 parent 155c977 commit 5c70fe4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}
}

def DJL_VERSION = "0.5.0-SNAPSHOT"
def DJL_VERSION = "0.5.0"

dependencies {
implementation "commons-cli:commons-cli:1.4"
Expand All @@ -20,7 +20,7 @@ dependencies {
implementation "ai.djl.mxnet:mxnet-model-zoo:${DJL_VERSION}"

// See https://github.com/awslabs/djl/blob/master/mxnet/mxnet-engine/README.md for more MXNet library selection options
runtimeOnly "ai.djl.mxnet:mxnet-native-auto:1.7.0-a-SNAPSHOT"
runtimeOnly "ai.djl.mxnet:mxnet-native-auto:1.7.0-a"

testImplementation 'org.testng:testng:6.14.3'
}
Expand Down
6 changes: 3 additions & 3 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

<groupId>ai.djl</groupId>
<artifactId>examples</artifactId>
<version>0.5.0-SNAPSHOT</version>
<version>0.5.0</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<djl.version>0.5.0-SNAPSHOT</djl.version>
<djl.version>0.5.0</djl.version>
</properties>

<repositories>
Expand Down Expand Up @@ -67,7 +67,7 @@
-->
<groupId>ai.djl.mxnet</groupId>
<artifactId>mxnet-native-auto</artifactId>
<version>1.7.0-a-SNAPSHOT</version>
<version>1.7.0-a</version>
<scope>runtime</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions jupyter/load_pytorch_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"source": [
"// %mavenRepo snapshots https://oss.sonatype.org/content/repositories/snapshots/\n",
"\n",
"%maven ai.djl:api:0.5.0-SNAPSHOT\n",
"%maven ai.djl.pytorch:pytorch-engine:0.5.0-SNAPSHOT\n",
"%maven ai.djl:api:0.5.0\n",
"%maven ai.djl.pytorch:pytorch-engine:0.5.0\n",
"%maven org.slf4j:slf4j-api:1.7.26\n",
"%maven org.slf4j:slf4j-simple:1.7.26\n",
"%maven net.java.dev.jna:jna:5.3.0\n",
Expand Down

0 comments on commit 5c70fe4

Please sign in to comment.