Skip to content

Commit bc771a0

Browse files
PLAT-7313: bumping version (#65)
* bumping version * updating gradle
1 parent ee9799b commit bc771a0

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ The client can be used with Java 1.8+ and pulled into Maven or Gradle projects.
1717
<dependency>
1818
<groupId>com.vertexvis</groupId>
1919
<artifactId>api-client-java</artifactId>
20-
<version>0.11.0</version>
20+
<version>0.13.0</version>
2121
<scope>compile</scope>
2222
</dependency>
2323
```
2424

2525
### Gradle
2626

2727
```groovy
28-
compile "com.vertexvis:api-client-java:0.11.0"
28+
compile "com.vertexvis:api-client-java:0.13.0"
2929
```
3030

3131
### Sbt
3232

3333
```sbt
34-
libraryDependencies += "com.vertexvis" % "api-client-java" % "0.11.0"
34+
libraryDependencies += "com.vertexvis" % "api-client-java" % "0.13.0"
3535
```
3636

3737
### Others
@@ -44,7 +44,7 @@ mvn clean package
4444

4545
Then manually install the following JARs.
4646

47-
- `target/api-client-java-0.11.0.jar`
47+
- `target/api-client-java-0.13.0.jar`
4848
- `target/lib/*.jar`
4949

5050
## Usage
@@ -104,7 +104,7 @@ To consume published snapshot versions in other projects, add the snapshot repos
104104
<dependency>
105105
<groupId>com.vertexvis</groupId>
106106
<artifactId>api-client-java</artifactId>
107-
<version>0.11.0-SNAPSHOT</version>
107+
<version>0.13.0-SNAPSHOT</version>
108108
</dependency>
109109
```
110110

@@ -119,7 +119,7 @@ repositories {
119119
}
120120
121121
dependencies {
122-
implementation 'com.vertexvis:api-client-java:0.11.0-SNAPSHOT'
122+
implementation 'com.vertexvis:api-client-java:0.13.0-SNAPSHOT'
123123
}
124124
```
125125

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id "io.github.gradle-nexus.publish-plugin"
44
}
55

6-
def projectVersion = '0.11.0'
6+
def projectVersion = '0.13.0'
77
def isSnapshot = project.hasProperty('isSnapshot') && project.isSnapshot.toBoolean()
88
version = isSnapshot ? "${projectVersion}-SNAPSHOT" : projectVersion
99

0 commit comments

Comments
 (0)