Skip to content

Commit a0f7976

Browse files
shaileshmishrashaileshmishra
authored andcommitted
Documentation updated
New Features: • None
1 parent 72a26f6 commit a0f7976

5 files changed

Lines changed: 11 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11

22
## CHANGELOG
33

4+
## Version 1.5.6
5+
###### Date: 27-Jan-2021
6+
Document updated
7+
8+
New Features:
9+
• None
410

511
## Version 1.5.5
612
###### Date: 22-Jan-2021

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ To use the Contentstack Java SDK to your existing project, perform the steps giv
2020
<dependency>
2121
<groupId>com.contentstack.sdk</groupId>
2222
<artifactId>java</artifactId>
23-
<version>1.5.5</version>
23+
<version>1.5.6</version>
2424
</dependency>
2525
```
2626

2727
2. **Gradle**
2828
```
29-
implementation 'com.contentstack.sdk:java:1.5.5'
29+
implementation 'com.contentstack.sdk:java:1.5.6'
3030
```
3131

3232
### Key Concepts for using Contentstack

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.contentstack.sdk</groupId>
88
<artifactId>java</artifactId>
9-
<version>1.5.5</version>
9+
<version>1.5.6</version>
1010
<packaging>jar</packaging>
1111
<name>contentstack-java</name>
1212
<description>Java SDK for Contentstack Content Delivery API, Contentstack is a headless CMS with an API-first approach
@@ -291,6 +291,7 @@
291291
<goals>
292292
<goal>report</goal>
293293
</goals>
294+
294295
</execution>
295296
</executions>
296297
</plugin>

src/main/java/com/contentstack/sdk/AssetLibrary.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Assets refer to all the media files (images, videos, PDFs, audio files, and so o
1212
These files can be used in multiple entries.
1313
Read more about [Assets](https://www.contentstack.com/docs/guide/content-management#working-with-assets)
1414
*/
15-
1615
public class AssetLibrary implements INotifyClass{
1716

1817
private com.contentstack.sdk.Stack stackInstance;
@@ -27,7 +26,6 @@ public class AssetLibrary implements INotifyClass{
2726
* Sorting order enum for {@link AssetLibrary}.
2827
* @author Contentstack.com, Inc
2928
*/
30-
3129
public enum ORDERBY
3230
{
3331
ASCENDING,
@@ -60,7 +58,6 @@ protected void setStackInstance(Stack stack){
6058
* assetLibObject.setHeader("custom_header_key", "custom_header_value");
6159
* </pre>
6260
*/
63-
6461
public void setHeader(String key, String value) {
6562
if (!key.isEmpty() && !value.isEmpty()) {
6663
localHeader.put(key, value);

src/main/java/com/contentstack/sdk/utility/CSAppConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
public class CSAppConstants {
88

9-
public static final String SDK_VERSION = "1.5.5";
9+
public static final String SDK_VERSION = "1.5.6";
1010

1111
public static enum RequestMethod
1212
{

0 commit comments

Comments
 (0)