Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhav.sinha committed Mar 2, 2019
1 parent b8480f9 commit 74a437f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The artifact is available on Maven Central Repository and be downloaded by addin
<dependency>
<groupId>com.github.vaibhav-sinha</groupId>
<artifactId>kong-java-client</artifactId>
<version>0.1.1-SNAPSHOT</version>
<version>0.2.0</version>
</dependency>

## Usage
Expand Down
6 changes: 2 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.vaibhav-sinha</groupId>
<artifactId>kong-java-client</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.2.0</version>

<packaging>jar</packaging>

Expand Down Expand Up @@ -144,7 +144,6 @@
<target>1.8</target>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand All @@ -171,7 +170,6 @@
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down Expand Up @@ -200,4 +198,4 @@
</plugins>
</build>

</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public interface ApiService {
* But it only take effect when API id is empty.
* 2. When the API id input is not empty, it will consider to update the existing API. So, we can either
* create a API (without id), or update a API (with id).
* 3. When you try to create a API with name & id, it will become odd. Kong will give you the 200(ok) response,
* 3. When you try to create a API with name and id, it will become odd. Kong will give you the 200(ok) response,
* but won't create the API that you wanted. (That's why we'd better not use this interface.
*
* */
Expand Down

2 comments on commit 74a437f

@vestor
Copy link

@vestor vestor commented on 74a437f Mar 30, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the update here?

@vaibhav-sinha
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Support for JWT service, ACL service was added among other minor changes.

Please sign in to comment.