From 6cd83f24a3c137e214e559a7bf488dc6f065e6a0 Mon Sep 17 00:00:00 2001 From: Jaakko Suutarla Date: Thu, 26 Sep 2019 15:00:55 +0300 Subject: [PATCH] Update dependencies to fix vulnerabilities --- project.clj | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/project.clj b/project.clj index 5052e2b..339f8bd 100644 --- a/project.clj +++ b/project.clj @@ -1,21 +1,21 @@ -(defproject clj-htmltopdf "0.1-alpha6" +(defproject clj-htmltopdf "0.1-alpha7" :description "Simple Clojure wrapper for Open HTML to PDF" :url "https://github.com/gered/clj-htmltopdf" :license {:name "GNU Lesser General Public License v3.0" :url "https://www.gnu.org/licenses/lgpl.html"} - :dependencies [[com.openhtmltopdf/openhtmltopdf-core "0.0.1-RC13"] - [com.openhtmltopdf/openhtmltopdf-pdfbox "0.0.1-RC13"] - [com.openhtmltopdf/openhtmltopdf-rtl-support "0.0.1-RC13"] - [com.openhtmltopdf/openhtmltopdf-svg-support "0.0.1-RC13"] - [org.jsoup/jsoup "1.11.3"] - [commons-io/commons-io "2.5"] + :dependencies [[com.openhtmltopdf/openhtmltopdf-core "1.0.0"] + [com.openhtmltopdf/openhtmltopdf-pdfbox "1.0.0"] + [com.openhtmltopdf/openhtmltopdf-rtl-support "1.0.0"] + [com.openhtmltopdf/openhtmltopdf-svg-support "1.0.0"] + [org.jsoup/jsoup "1.12.1"] + [commons-io/commons-io "2.6"] [hiccup "1.0.5"]] :profiles {:provided {:dependencies [[org.clojure/clojure "1.9.0"]]} :dev - {:dependencies [[pjstadig/humane-test-output "0.8.1"]] + {:dependencies [[pjstadig/humane-test-output "0.9.0"]] :injections [(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)]}}) -- 2.43.0