Skip to content

Commit

Permalink
0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ikitommi committed Dec 2, 2022
1 parent 51212e4 commit 906756f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 10 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.3.7 (2022-12-02)

* new options `:strip-nils` to remove any keys that have nil values [#67](https://github.com/metosin/jsonista/pull/67)
* Updated deps:

```clj
[com.fasterxml.jackson.core/jackson-core "2.14.1"] is available but we use "2.13.2"
[com.fasterxml.jackson.core/jackson-databind "2.14.1"] is available but we use "2.13.2.2"
[com.fasterxml.jackson.datatype/jackson-datatype-jsr310 "2.14.1"] is available but we use "2.13.2"
```

## 0.3.6. (2022-04-05)

* Updated deps:
Expand Down
20 changes: 10 additions & 10 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject metosin/jsonista "0.3.6"
(defproject metosin/jsonista "0.3.7"
:description "Clojure library for fast JSON encoding and decoding."
:url "https://github.com/metosin/jsonista"
:license {:name "Eclipse Public License"
Expand All @@ -16,21 +16,21 @@
:codox {:source-uri "http://github.com/metosin/jsonista/blob/master/{filepath}#L{line}"
:output-path "doc"
:metadata {:doc/format :markdown}}
:dependencies [[com.fasterxml.jackson.core/jackson-core "2.13.2"]
[com.fasterxml.jackson.core/jackson-databind "2.13.2.2"]
[com.fasterxml.jackson.datatype/jackson-datatype-jsr310 "2.13.2"]]
:dependencies [[com.fasterxml.jackson.core/jackson-core "2.14.1"]
[com.fasterxml.jackson.core/jackson-databind "2.14.1"]
[com.fasterxml.jackson.datatype/jackson-datatype-jsr310 "2.14.1"]]
:profiles {:provided {:dependencies [[org.clojure/clojure "1.10.1"]]}
:dev {:dependencies [[org.clojure/clojure "1.10.1"]
[jmh-clojure/jmh-clojure "0.4.1"]
[com.fasterxml.jackson.datatype/jackson-datatype-joda "2.13.2"]
[cheshire "5.10.2"]
[com.taoensso/nippy "3.1.1"]
[com.fasterxml.jackson.datatype/jackson-datatype-joda "2.14.1"]
[cheshire "5.11.0"]
[com.taoensso/nippy "3.2.0"]
[org.clojure/data.json "2.4.0"]
[com.cognitect/transit-clj "1.0.329"]
[org.msgpack/msgpack-core "0.9.1"]
[org.msgpack/jackson-dataformat-msgpack "0.9.1"
[org.msgpack/msgpack-core "0.9.3"]
[org.msgpack/jackson-dataformat-msgpack "0.9.3"
:exclusions [com.fasterxml.jackson.core/jackson-databind]]
[com.clojure-goes-fast/clj-async-profiler "0.5.1"]
[com.clojure-goes-fast/clj-async-profiler "1.0.3"]
[criterium "0.4.6"]]
:global-vars {*warn-on-reflection* true}}
:virgil {:plugins [[lein-virgil "0.1.9"]]}
Expand Down

0 comments on commit 906756f

Please sign in to comment.