Skip to content

Commit 52e49a1

Browse files
Version 1.3.0
Date: Apr-12-2019 Change: Added support of below methods in SDK - getContentTypes() in Stack class - fetch in ContentType class Below two support from the Config class has been removed permanently - public void setSSL(boolean isSSL)setSSL() - public boolean isSSL()
1 parent e2f8059 commit 52e49a1

File tree

3 files changed

+71
-44
lines changed

3 files changed

+71
-44
lines changed

CHANGELOG.md

Lines changed: 51 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,53 @@
1-
## Changelog
2-
------------------------------------------------
1+
2+
## CHANGELOG
3+
4+
## Version 1.3.0
5+
### Date: Apr-12-2019
6+
Change: Added support of below methods in SDK
7+
8+
```
9+
getContentTypes() in Stack class
10+
fetch in ContentType class
11+
```
12+
13+
Below two support from the Config class has been removed permanently
14+
- public void setSSL(boolean isSSL)setSSL()
15+
- public boolean isSSL()
16+
17+
------------------------------------------------
18+
19+
## Version 1.2.1
320
### Date: 14-Mar-2019
4-
#### v1.2.1 Bug Fixes and code clean up:
5-
------------------------------------------------
6-
### Date: 20-Feb-2019
7-
#### Maven integration
8-
#### Folder structure modified.
9-
------------------------------------------------
10-
### Date: 15-Dec-2017
11-
#### v1.2.0 New Features:
12-
- Entry- added method ‘addParam’
13-
- Query- added method 'addParam'
14-
- Asset- added method 'addParam'
15-
------------------------------------------------
16-
### Date: 10-Nov-2017
17-
#### v1.1.0 New Features:
18-
- Stack- added method 'ImageTransform'
19-
- Query- added method 'includeContentType'
20-
- QueryResult- added method 'contentType'
21-
------------------------------------------------
22-
#### API deprecation:
23-
- Query
24-
- Deprecated method 'includeSchema'
21+
- Note: Bug Fixes and code clean up:
22+
23+
--------------------------------
24+
25+
Date: 20-Feb-2019
26+
Maven integration
27+
Folder structure modified.
28+
29+
------------------------------------------------
30+
## Version 1.2.0
31+
### Date: 15-Dec-2017
32+
- New Features:
33+
```
34+
Entry- added method ‘addParam’
35+
Query- added method 'addParam'
36+
Asset- added method 'addParam'
37+
```
38+
------------------------------------------------
39+
40+
## Version 1.1.0
41+
### Date: 10-Nov-2017
42+
- New Features:
43+
```
44+
Stack- added method 'ImageTransform'
45+
Query- added method 'includeContentType'
46+
QueryResult- added method 'contentType'
47+
```
48+
------------------------------------------------
49+
50+
#### API deprecation:
51+
- Query
52+
- Deprecated method 'includeSchema'
2553
------------------------------------------------

pom.xml

Lines changed: 18 additions & 2 deletions
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.2.1-SNAPSHOT</version>
9+
<version>1.3.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>contentstack-java</name>
@@ -21,20 +21,29 @@
2121
</licenses>
2222

2323
<developers>
24+
2425
<developer>
2526
<name>Shailesh Mishra</name>
2627
<email>mshaileshr@gmail.com</email>
2728
<organization>Contentstack</organization>
2829
<organizationUrl>https://www.contentstack.com/</organizationUrl>
2930
</developer>
31+
32+
<developer>
33+
<name>Contentstacksdk</name>
34+
<email>mobile@contentstack.com</email>
35+
<organization>Contentstack</organization>
36+
<organizationUrl>https://www.contentstack.com/</organizationUrl>
37+
</developer>
38+
3039
</developers>
3140

3241

3342
<scm>
3443
<url>https://github.com/contentstack/contentstack-java/tree/master</url>
3544
<connection>scm:git:git://github.com/contentstack/contentstack-java.git</connection>
3645
<developerConnection>scm:git:ssh://github.com:contentstack/contentstack-java.git</developerConnection>
37-
<tag>v@{project.version}</tag>
46+
<tag>v1.2.1</tag>
3847
</scm>
3948

4049
<issueManagement>
@@ -50,14 +59,17 @@
5059

5160

5261
<distributionManagement>
62+
5363
<snapshotRepository>
5464
<id>ossrh</id>
5565
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
5666
</snapshotRepository>
67+
5768
<repository>
5869
<id>ossrh</id>
5970
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
6071
</repository>
72+
6173
</distributionManagement>
6274

6375

@@ -67,6 +79,7 @@
6779

6880

6981
<dependencies>
82+
7083
<dependency>
7184
<groupId>junit</groupId>
7285
<artifactId>junit</artifactId>
@@ -84,6 +97,7 @@
8497

8598
<build>
8699
<plugins>
100+
87101
<plugin>
88102
<groupId>org.apache.maven.plugins</groupId>
89103
<artifactId>maven-source-plugin</artifactId>
@@ -97,6 +111,7 @@
97111
</execution>
98112
</executions>
99113
</plugin>
114+
100115
<plugin>
101116
<groupId>org.apache.maven.plugins</groupId>
102117
<artifactId>maven-javadoc-plugin</artifactId>
@@ -159,6 +174,7 @@
159174
<goals>deploy</goals>
160175
</configuration>
161176
</plugin>
177+
162178
</plugins>
163179
</build>
164180

profiles.xml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/PROFILES/1.0.0 http://maven.apache.org/xsd/profiles-1.0.0.xsd">
55
<profiles>
66
<profile>
7-
<id>77b9c8fd28426a</id>
8-
<activation>
9-
<property>
10-
<name>performRelease</name>
11-
<value>true</value>
12-
</property>
13-
</activation>
7+
<id></id>
8+
149
</profile>
15-
16-
<profile>
17-
<id>ossrh</id>
18-
<activation>
19-
<activeByDefault>true</activeByDefault>
20-
</activation>
21-
<properties>
22-
<gpg.executable>gpg2</gpg.executable>
23-
<gpg.passphrase>***REMOVED***7dQWppvR6UY4</gpg.passphrase>
24-
</properties>
25-
</profile>
26-
2710
</profiles>
2811
</profilesXml>

0 commit comments

Comments
 (0)