Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modified some files release related, including changing the next version to 1.4.0 instead of 1.3.1 #102

Merged
merged 4 commits into from
Dec 12, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
Change log
==========
Changes in version 1.4.0
------------------------
Ektorp 1.4.0 updated dependencies of Jackson and HttpClient.
### Fixes
### Improvements
* Added support for the HEAD request of a document to obtain the latest revision.
* Added support for handling compressed content.
### Other Changes
* Jackson version changed to 2.1.0.
* HttpClient version change to 4.2.1 (fixes an issue related to gzip,deflate).

### Contributors
Pascal Gélinas

Pascal Deschenes

Vladislav Fedotov

David Venable

Henrik Lundgren

Changes in version 1.3.0
------------------------
Ektorp 1.3.0 brings support for CouchDB 1.2 and Jackson 1.9
Expand All @@ -26,7 +48,6 @@ Ektorp 1.3.0 brings support for CouchDB 1.2 and Jackson 1.9
Andreas Litt

David Venable
* HttpClient version change to 4.2.1 to enable gzip,deflate

esromneb

Expand Down Expand Up @@ -244,4 +265,4 @@ Changes in version 0.9.2
* moved support classes to separate org.ektorp.support
* operations in CouchDb? that return revision now returns it in Ektorp aswell
* added getters for key, startKey and endKey equals and hashCode overrides all changes made to simply unit testing queries
* getAll use getAllDocIds now filters design docs if no "all" view is defined
* getAll use getAllDocIds now filters design docs if no "all" view is defined
16 changes: 8 additions & 8 deletions dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ Dependencies
============
If you are not using Maven or some other dependency management tool that can understand Maven repositories, the list below is what you need to run Ektorp.

Runtime Dependencies for Ektorp 1.2.2
Runtime Dependencies for Ektorp 1.4.0
-------------------------------------
* jackson-core-asl 1.8.6
* jackson-mapper-asl 1.8.6
* httpclient 4.1.1
* httpcore 4.1
* httpclient-cache 4.1.1 (only if caching is enabled)
* jackson-core 2.1.0
* jackson-databind 2.1.0
* httpclient 4.2.1
* httpcore 4.2.1
* httpclient-cache 4.2.1 (only if caching is enabled)
* commons-codec 1.4
* commons-io 2.0.1
* slf4j-api 1.6.1

Runtime Dependencies for Ektorp Spring 1.2.2
Runtime Dependencies for Ektorp Spring 1.4.0
--------------------------------------------
* org.ektorp 1.2.2
* org.ektorp 1.4.0
* spring-context 3.0.5
* spring-aop 3.0.5
* spring-beans 3.0.5
Expand Down
4 changes: 2 additions & 2 deletions org.ektorp.android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<artifactId>org.ektorp.android</artifactId>
<packaging>jar</packaging>
<name>Ektorp Android</name>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0-SNAPSHOT</version>
<description>Provides Android support to Ektorp</description>
<parent>
<groupId>org.ektorp</groupId>
<artifactId>org.ektorp.parent</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions org.ektorp.spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<artifactId>org.ektorp.spring</artifactId>
<packaging>jar</packaging>
<name>Ektorp Spring</name>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0-SNAPSHOT</version>
<description>Provides Spring support to Ektorp</description>
<parent>
<groupId>org.ektorp</groupId>
<artifactId>org.ektorp.parent</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions org.ektorp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<artifactId>org.ektorp</artifactId>
<packaging>jar</packaging>
<name>Ektorp</name>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0-SNAPSHOT</version>
<description>a Java CouchDB persistence library</description>
<parent>
<artifactId>org.ektorp.parent</artifactId>
<groupId>org.ektorp</groupId>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<artifactId>org.ektorp.parent</artifactId>
<packaging>pom</packaging>
<name>Ektorp Parent</name>
<version>1.3.1-SNAPSHOT</version>
<version>1.4.0-SNAPSHOT</version>
<description>a Java CouchDB persistence library</description>
<scm>
<connection>scm:git:git@github.com:helun/Ektorp.git</connection>
Expand Down Expand Up @@ -147,6 +147,17 @@
<localCheckout>true</localCheckout>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
Expand Down