Skip to content

Commit

Permalink
Bump version to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DonCziken committed Dec 3, 2020
1 parent d8bde32 commit 95dee58
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Various Java client libraries for utilization of APIs in <a href="https://adscore.com">AdScore.com</a>

<h5> Latest version: 1.0.2 - currently available features: </h5>
<h5> Latest version: 1.0.3 - currently available features: </h5>
1. SignatureVerifier

<h5> other languages: <h5>
Expand All @@ -24,14 +24,14 @@ The easiest way to utilize the library is to attach it as a Maven dependency:
<dependency>
<groupId>com.adscore</groupId>
<artifactId>adscore-client-libraries</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</dependency>
```

or as a Gradle dependency:

```gradle
compile 'com.adscore:adscore-client-libraries:1.0.2'
compile 'com.adscore:adscore-client-libraries:1.0.3'
```

<h5>Maven/Gradle static file</h5>
Expand All @@ -42,15 +42,15 @@ Download the latest release from <a href="https://github.com/Adscore/client-libs
<dependency>
<groupId>com.adscore</groupId>
<artifactId>client-libraries</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/adscore-client-libraries-1.0.2.jar</systemPath>
<systemPath>${project.basedir}/libs/adscore-client-libraries-1.0.3.jar</systemPath>
</dependency>
```
or as a Gradle:

```gradle
compile files('libs/adscore-client-libraries-1.0.2.jar')
compile files('libs/adscore-client-libraries-1.0.3.jar')
```

Note that this is a thin jar, so in case of manual referencing (i.e. not via mvn central) you need to ensure yourself that dependencies are satisifed - for list of those please look at build.gradle.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'com.adscore'
version '1.0.2'
version '1.0.3'

sourceCompatibility = 1.8

Expand Down

0 comments on commit 95dee58

Please sign in to comment.