Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
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()
  • Loading branch information
ishaileshmishra committed Apr 12, 2019
1 parent e2f8059 commit 52e49a1
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 44 deletions.
74 changes: 51 additions & 23 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,53 @@
## Changelog
------------------------------------------------

## CHANGELOG

## 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()

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

## Version 1.2.1
### Date: 14-Mar-2019
#### v1.2.1 Bug Fixes and code clean up:
------------------------------------------------
### Date: 20-Feb-2019
#### Maven integration
#### Folder structure modified.
------------------------------------------------
### Date: 15-Dec-2017
#### v1.2.0 New Features:
- Entry- added method ‘addParam’
- Query- added method 'addParam'
- Asset- added method 'addParam'
------------------------------------------------
### Date: 10-Nov-2017
#### v1.1.0 New Features:
- Stack- added method 'ImageTransform'
- Query- added method 'includeContentType'
- QueryResult- added method 'contentType'
------------------------------------------------
#### API deprecation:
- Query
- Deprecated method 'includeSchema'
- Note: Bug Fixes and code clean up:

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

Date: 20-Feb-2019
Maven integration
Folder structure modified.

------------------------------------------------
## Version 1.2.0
### Date: 15-Dec-2017
- New Features:
```
Entry- added method ‘addParam’
Query- added method 'addParam'
Asset- added method 'addParam'
```
------------------------------------------------

## Version 1.1.0
### Date: 10-Nov-2017
- New Features:
```
Stack- added method 'ImageTransform'
Query- added method 'includeContentType'
QueryResult- added method 'contentType'
```
------------------------------------------------

#### API deprecation:
- Query
- Deprecated method 'includeSchema'
------------------------------------------------
20 changes: 18 additions & 2 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.2.1-SNAPSHOT</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>contentstack-java</name>
Expand All @@ -21,20 +21,29 @@
</licenses>

<developers>

<developer>
<name>Shailesh Mishra</name>
<email>[email protected]</email>
<organization>Contentstack</organization>
<organizationUrl>https://www.contentstack.com/</organizationUrl>
</developer>

<developer>
<name>Contentstacksdk</name>
<email>[email protected]</email>
<organization>Contentstack</organization>
<organizationUrl>https://www.contentstack.com/</organizationUrl>
</developer>

</developers>


<scm>
<url>https://github.com/contentstack/contentstack-java/tree/master</url>
<connection>scm:git:git://github.com/contentstack/contentstack-java.git</connection>
<developerConnection>scm:git:ssh://github.com:contentstack/contentstack-java.git</developerConnection>
<tag>v@{project.version}</tag>
<tag>v1.2.1</tag>
</scm>

<issueManagement>
Expand All @@ -50,14 +59,17 @@


<distributionManagement>

<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>

<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>

</distributionManagement>


Expand All @@ -67,6 +79,7 @@


<dependencies>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -84,6 +97,7 @@

<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand All @@ -97,6 +111,7 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down Expand Up @@ -159,6 +174,7 @@
<goals>deploy</goals>
</configuration>
</plugin>

</plugins>
</build>

Expand Down
21 changes: 2 additions & 19 deletions profiles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,8 @@
xsi:schemaLocation="http://maven.apache.org/PROFILES/1.0.0 http://maven.apache.org/xsd/profiles-1.0.0.xsd">
<profiles>
<profile>
<id>77b9c8fd28426a</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<id></id>

</profile>

<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg2</gpg.executable>
<gpg.passphrase>***REMOVED***7dQWppvR6UY4</gpg.passphrase>
</properties>
</profile>

</profiles>
</profilesXml>

0 comments on commit 52e49a1

Please sign in to comment.