Skip to content

Commit

Permalink
Merge pull request #4 from contentstack/development
Browse files Browse the repository at this point in the history
URL encoding bug fix
  • Loading branch information
ishaileshmishra authored May 2, 2019
2 parents a6092d4 + c1620a6 commit dd1b47f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 12 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@

## CHANGELOG



## Version 1.3.1
### Date: May-02-2019
Change: include reference bug fixed
added testcase report for v1.3.1


------------------------------------------------


## Version 1.3.0
### Date: Apr-12-2019
Change: Added support of below methods in SDK
Expand Down
2 changes: 1 addition & 1 deletion pom.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Written manually.
version=1.2.0
version=1.3.1
groupId=com.contentstack.sdk
artifactId=java
23 changes: 13 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.contentstack.sdk</groupId>
<artifactId>java</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>1.3.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>contentstack-java</name>
Expand Down Expand Up @@ -116,6 +116,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down Expand Up @@ -152,15 +155,15 @@
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>

<plugin>
Expand Down

0 comments on commit dd1b47f

Please sign in to comment.