Skip to content

Commit db79218

Browse files
Added Support For ContentstackRegion
1 parent f0c4a1f commit db79218

7 files changed

Lines changed: 12 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11

22
## CHANGELOG
33

4-
## Version 1.4.1
4+
## Version 1.4.2
55
###### Date: 23-August-2019
6+
- [Config] - Added support for ContentstackRegion in Config class
7+
8+
------------------------------------------------
9+
10+
## Version 1.4.1
11+
###### Date: 21-August-2019
612
- [Query] - Added support for whereIn(String key) and whereNotIn(String key) methods
713
- [CSAppConstants] - Removed google internet connection check from CSAppConstants
814

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.4.1</version>
23+
<version>1.4.2</version>
2424
</dependency>
2525
```
2626

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

3232
### Key Concepts for using Contentstack

pom.xml

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

77
<groupId>com.contentstack.sdk</groupId>
88
<artifactId>java</artifactId>
9-
<version>1.4.1-SNAPSHOT</version>
9+
<version>1.4.2-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>contentstack-java</name>

src/log4j.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# This sets the global logging level and specifies the appenders
22
log4j.rootLogger=DEBUG, theConsoleAppender
3-
43
# settings for the console appender
54
log4j.appender.theConsoleAppender=org.apache.log4j.ConsoleAppender
65
log4j.appender.theConsoleAppender.layout=org.apache.log4j.PatternLayout

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ public enum ContentstackRegion { US, EU }
4040
* Sets region allow you to set your region for the Contentstack server.
4141
*
4242
* @param region
43-
* host name.
4443
*
4544
* <p>
4645
* <b>Note:</b> Default region sets to us </a>

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

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

3232
public class CSAppConstants {
3333

34-
public static final String SDK_VERSION = "1.4.1";
34+
public static final String SDK_VERSION = "1.4.2";
3535

3636
public static enum RequestMethod
3737
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
1.4.1
1+
1.4.2
22

0 commit comments

Comments
 (0)