CHANGELOG typo
This commit is contained in:
parent
1a92e192c9
commit
ed85046953
1 changed files with 8 additions and 6 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
## v2.0.0 → v2.1.0
|
## v2.0.0 → v2.1.0
|
||||||
* Exposed low-level fns: `freeze-to-stream!`, `thaw-from-stream!`.
|
* Exposed low-level fns: `freeze-to-stream!`, `thaw-from-stream!`.
|
||||||
* Added `extend-freeze` and `extend-thaw` for extending to custom types:
|
* Added `extend-freeze` and `extend-thaw` for extending to custom types:
|
||||||
|
|
||||||
* Added support for easily extending Nippy de/serialization to custom types:
|
* Added support for easily extending Nippy de/serialization to custom types:
|
||||||
```clojure
|
```clojure
|
||||||
(defrecord MyType [data])
|
(defrecord MyType [data])
|
||||||
|
|
@ -9,6 +10,7 @@
|
||||||
(nippy/thaw (nippy/freeze (->MyType "Joe"))) => #taoensso.nippy.MyType{:data "Joe"}
|
(nippy/thaw (nippy/freeze (->MyType "Joe"))) => #taoensso.nippy.MyType{:data "Joe"}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## v1.2.1 → v2.0.0
|
## v1.2.1 → v2.0.0
|
||||||
* **MIGRATION NOTE**: Please be sure to use `lein clean` to clear old (v1) build artifacts!
|
* **MIGRATION NOTE**: Please be sure to use `lein clean` to clear old (v1) build artifacts!
|
||||||
* Refactored for huge performance improvements (~40% roundtrip time).
|
* Refactored for huge performance improvements (~40% roundtrip time).
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue