Skip to content

Commit

Permalink
Bump cheshire and pin com.fasterxml.jackson.* libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiago Kenji Okada (Nubank) committed Aug 3, 2020
1 parent 879882b commit 3a1702d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 0.1.22
- Upgrade `cheshire` to version `5.10.0` again
- Pin `com.fasterxml.jackson.*` libraries to version `2.10.2`

## 0.1.21
- Downgrade `cheshire` to version `5.8.1`

Expand Down
11 changes: 7 additions & 4 deletions project.clj
@@ -1,4 +1,4 @@
(defproject nubank/lein-jupyter "0.1.21"
(defproject nubank/lein-jupyter "0.1.22"
:description "Leiningen plugin for jupyter notebook."
:url "https://github.com/nubank/lein-jupyter"
:license {:name "MIT License"}
Expand All @@ -7,9 +7,12 @@
["clojars" {:url "https://clojars.org/repo/"}]]

:dependencies [[clojupyter "0.3.2"]
;; Use the same version as used in clojupyter, or this can result in strange errors
[cheshire "5.8.1"]
[org.apache.commons/commons-exec "1.3"]]
[cheshire "5.10.0"]
[org.apache.commons/commons-exec "1.3"]

;; cheshire uses jackson 2.10.2 but clojupyter expects an older version
[com.fasterxml.jackson.core/jackson-core "2.10.2"]
[com.fasterxml.jackson.dataformat/jackson-dataformat-cbor "2.10.2"]
[com.fasterxml.jackson.dataformat/jackson-dataformat-smile "2.10.2"]]
:resource-paths ["resources"]
:eval-in-leiningen true)

0 comments on commit 3a1702d

Please sign in to comment.