Merge branch 'dev'
This commit is contained in:
commit
ccca7126a2
3 changed files with 13 additions and 16 deletions
|
|
@ -1,5 +1,10 @@
|
|||
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
||||
|
||||
## v2.7.0 / 2014 Oct 6
|
||||
|
||||
No changes from `v2.7.0-RC1`.
|
||||
|
||||
|
||||
## v2.7.0-RC1 / 2014 Aug 27
|
||||
|
||||
> **Major release** with significant performance improvements, a new default compression type ([LZ4](http://blog.jpountz.net/post/28092106032/wow-lz4-is-fast)), and better support for a variety of compression/encryption tools.
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/nippy "2.6.3"] ; Stable
|
||||
[com.taoensso/nippy "2.7.0-RC1"] ; Development
|
||||
[com.taoensso/nippy "2.7.0"] ; Please see CHANGELOG for details
|
||||
```
|
||||
|
||||
v2.7 is a major, **mostly backwards-compatible** release focused on improved performance and a new default compression scheme (LZ4). See the [CHANGELOG][] for details. Thanks to [mpenet](https://github.com/mpenet) for his work on the LZ4 support!
|
||||
|
|
@ -35,7 +34,7 @@ Nippy is an attempt to provide a reliable, high-performance **drop-in alternativ
|
|||
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/nippy "2.6.3"] ; project.clj
|
||||
[com.taoensso/nippy "2.7.0"] ; project.clj
|
||||
(ns my-app (:require [taoensso.nippy :as nippy])) ; ns
|
||||
```
|
||||
|
||||
|
|
|
|||
19
project.clj
19
project.clj
|
|
@ -1,4 +1,4 @@
|
|||
(defproject com.taoensso/nippy "2.7.0-RC1"
|
||||
(defproject com.taoensso/nippy "2.7.0"
|
||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||
:description "Clojure serialization library"
|
||||
:url "https://github.com/ptaoussanis/nippy"
|
||||
|
|
@ -12,8 +12,8 @@
|
|||
|
||||
:dependencies
|
||||
[[org.clojure/clojure "1.4.0"]
|
||||
[org.clojure/tools.reader "0.8.7"]
|
||||
[com.taoensso/encore "1.7.1"]
|
||||
[org.clojure/tools.reader "0.8.9"]
|
||||
[com.taoensso/encore "1.11.2"]
|
||||
[org.iq80.snappy/snappy "0.3"]
|
||||
[org.tukaani/xz "1.5"]
|
||||
[net.jpountz.lz4/lz4 "1.2.0"]]
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
|
||||
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
|
||||
:test {:jvm-opts ["-Xms1024m" "-Xmx2048m"]
|
||||
:dependencies [[expectations "2.0.9"]
|
||||
:dependencies [[expectations "2.0.12"]
|
||||
[org.clojure/test.check "0.5.9"]
|
||||
;; [com.cemerick/double-check "0.5.7"]
|
||||
[org.clojure/data.fressian "0.2.0"]
|
||||
|
|
@ -46,12 +46,5 @@
|
|||
"deploy-lib" ["do" "deploy" "clojars," "install"]
|
||||
"start-dev" ["with-profile" "+server-jvm" "repl" ":headless"]}
|
||||
|
||||
:repositories
|
||||
{"sonatype"
|
||||
{:url "http://oss.sonatype.org/content/repositories/releases"
|
||||
:snapshots false
|
||||
:releases {:checksum :fail}}
|
||||
"sonatype-snapshots"
|
||||
{:url "http://oss.sonatype.org/content/repositories/snapshots"
|
||||
:snapshots true
|
||||
:releases {:checksum :fail :update :always}}})
|
||||
:repositories {"sonatype-oss-public"
|
||||
"https://oss.sonatype.org/content/groups/public/"})
|
||||
|
|
|
|||
Loading…
Reference in a new issue