Skip to content

Commit 0abfb43

Browse files
committed
build: version and doc changed for expecting release of 1.0.0
1 parent 16c3e80 commit 0abfb43

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ allprojects {
3333
Step 2. Add the dependency on project's `build.gradle`:
3434
```
3535
dependencies {
36-
implementation '--gradle dependency here--'
36+
implementation 'com.github.imagekit-developer:imagekit-java:v1.0.0'
3737
}
3838
```
3939
### For Maven:
@@ -49,9 +49,9 @@ Step 1. Add the JitPack repository to your build file:
4949
Step 2. Add the dependency in POM file:
5050
```
5151
<dependency>
52-
<groupId>maven group id</groupId>
53-
<artifactId>maven artiface id</artifactId>
54-
<version>version</version>
52+
<groupId>com.github.imagekit-developer</groupId>
53+
<artifactId>imagekit-java</artifactId>
54+
<version>v1.0.0</version>
5555
</dependency>
5656
```
5757

imagekit-sdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group 'io.imagekit.sdk'
7-
version '0.0.1'
7+
version '1.0.0'
88

99
sourceCompatibility = 1.8
1010

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package io.imagekit.sdk.constants;
22

33
public class Version {
4-
public static final String VERSION_CODE="java-0.0.1";
4+
public static final String VERSION_CODE="java-1.0.0";
55
}

0 commit comments

Comments
 (0)