Skip to content

Commit

Permalink
Merge pull request #47 from vsbogd/release-v0.3.0
Browse files Browse the repository at this point in the history
Release version 0.3.0
  • Loading branch information
vsbogd authored Mar 16, 2020
2 parents 772a480 + 03578ec commit 0fb2243
Show file tree
Hide file tree
Showing 16 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![CircleCI](https://circleci.com/gh/singnet/snet-sdk-java.svg?style=svg)](https://circleci.com/gh/singnet/snet-sdk-java)
[![codecov](https://codecov.io/gh/singnet/snet-sdk-java/branch/master/graph/badge.svg)](https://codecov.io/gh/singnet/snet-sdk-java)
[![Release](https://jitpack.io/v/singnet/snet-sdk-java.svg)](https://jitpack.io/#singnet/snet-sdk-java)
[![Javadoc](https://img.shields.io/badge/javadoc-master--SNAPSHOT-brightgreen)](https://jitpack.io/com/github/singnet/snet-sdk-java/snet-sdk-java/master-SNAPSHOT/javadoc)
[![Javadoc](https://img.shields.io/badge/javadoc-0.3.0-brightgreen)](https://jitpack.io/com/github/singnet/snet-sdk-java/snet-sdk-java/0.3.0/javadoc)

## Implementing SingularityNet service client in Java

Expand Down Expand Up @@ -34,7 +34,7 @@
<plugin>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>snet-sdk-maven-plugin</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>

<executions>
<execution>
Expand Down Expand Up @@ -72,7 +72,7 @@
<dependency>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>snet-sdk-java</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion example/android/SNetDemo/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies {

implementation "io.grpc:grpc-okhttp:${grpcVersion}"
implementation 'org.slf4j:slf4j-android:1.7.30'
implementation 'com.github.singnet.snet-sdk-java:snet-sdk-java:master-SNAPSHOT'
implementation 'com.github.singnet.snet-sdk-java:snet-sdk-java:0.3.0'

implementation project(":style-transfer-api")
implementation project(":semantic-segmentation-api")
Expand Down
2 changes: 1 addition & 1 deletion example/android/SNetDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
}
dependencies {

classpath 'com.github.singnet.snet-sdk-java:snet-sdk-gradle-plugin:master-SNAPSHOT'
classpath 'com.github.singnet.snet-sdk-java:snet-sdk-gradle-plugin:0.3.0'
classpath 'com.android.tools.build:gradle:3.6.0'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.10'
// NOTE: Do not place your application dependencies here; they belong
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {

implementation "io.grpc:grpc-okhttp:${grpcVersion}"
implementation 'org.slf4j:slf4j-android:1.7.30'
implementation 'com.github.singnet.snet-sdk-java:snet-sdk-java:master-SNAPSHOT'
implementation 'com.github.singnet.snet-sdk-java:snet-sdk-java:0.3.0'
}

tasks.register('getImageSegmentationApi', io.singularitynet.sdk.gradle.GetSingularityNetServiceApi) {
Expand Down
2 changes: 1 addition & 1 deletion example/android/SNetDemo/style-transfer-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {

implementation "io.grpc:grpc-okhttp:${grpcVersion}"
implementation 'org.slf4j:slf4j-android:1.7.30'
implementation 'com.github.singnet.snet-sdk-java:snet-sdk-java:master-SNAPSHOT'
implementation 'com.github.singnet.snet-sdk-java:snet-sdk-java:0.3.0'
}

tasks.register('getStyleTransferApi', io.singularitynet.sdk.gradle.GetSingularityNetServiceApi) {
Expand Down
2 changes: 1 addition & 1 deletion example/cli/cntk-image-recognition/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>sdk-examples-pom</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion example/cli/example-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>sdk-examples-pom</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion example/cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>snet-sdk-java-pom</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion plugin/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>snet-sdk-plugin-pom</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions plugin/gradle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ contains SingularityNet SDK dependencies.
Add SingularityNet and Protobuf plugins into the classpath using
`buildscript/dependencies` section:
```
classpath 'com.github.singnet.snet-sdk-java:snet-sdk-gradle-plugin:master-SNAPSHOT'
classpath 'com.github.singnet.snet-sdk-java:snet-sdk-gradle-plugin:0.3.0'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.10'
```

Expand All @@ -41,7 +41,7 @@ Add SingularityNet Java SDK into `dependencies` section:
```
implementation 'io.grpc:grpc-okhttp:1.20.0'
implementation 'org.slf4j:slf4j-android:1.7.30'
implementation 'com.github.singnet.snet-sdk-java:snet-sdk-java:master-SNAPSHOT'
implementation 'com.github.singnet.snet-sdk-java:snet-sdk-java:0.3.0'
```

Add one Gradle task to download and unpack each SingularityNet service API you
Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>snet-sdk-plugin-pom</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion plugin/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>snet-sdk-plugin-pom</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion plugin/maven/src/test/resources/project-to-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>snet-sdk-maven-plugin</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
<packaging>jar</packaging>
<name>Test MyMojo</name>

Expand Down
2 changes: 1 addition & 1 deletion plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>snet-sdk-java-pom</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>snet-sdk-java-pom</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
<packaging>pom</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.singnet.snet-sdk-java</groupId>
<artifactId>snet-sdk-java-pom</artifactId>
<version>master-SNAPSHOT</version>
<version>0.3.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down

0 comments on commit 0fb2243

Please sign in to comment.