From c370c51c5c9203ec49f2c7df0bb0def99efbe552 Mon Sep 17 00:00:00 2001 From: Cam Saul Date: Fri, 13 Jul 2018 15:18:04 -0700 Subject: [PATCH] Update deps & bump version -> 1.1.9 --- VERSION-HISTORY.md | 5 +++++ project.clj | 12 ++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/VERSION-HISTORY.md b/VERSION-HISTORY.md index 6c46bc6..8fd42e7 100644 --- a/VERSION-HISTORY.md +++ b/VERSION-HISTORY.md @@ -1,5 +1,10 @@ # Toucan Version History & Release Notes +### [1.1.9](https://github.com/metabase/toucan/compare/1.1.8...1.1.9) (July 13th, 2018) + +* Removed classpath-scanning code that caused slowdowns in larger projects and had stopped working in Java 9. (PR [#38](https://github.com/metabase/toucan/pull/38), credit: [@senior](https://github.com/senior)) +* Updated dependencies. + ### [1.1.8](https://github.com/metabase/toucan/compare/1.1.7...1.1.8) (June 13th, 2018) * Add support for SQLite. (PR [#37](https://github.com/metabase/toucan/pull/37), credit: [@Thingographist](https://github.com/Thingographist)) diff --git a/project.clj b/project.clj index 0e0a66d..2b56230 100644 --- a/project.clj +++ b/project.clj @@ -1,14 +1,14 @@ -(defproject toucan "1.1.8" +(defproject toucan "1.1.9" :description "Functionality for defining your application's models and querying the database." :url "https://github.com/metabase/toucan" :license {:name "Eclipse Public License" :url "https://raw.githubusercontent.com/metabase/toucan/master/LICENSE.txt"} :min-lein-version "2.5.0" :dependencies [[org.clojure/java.classpath "0.3.0"] - [org.clojure/java.jdbc "0.7.6"] + [org.clojure/java.jdbc "0.7.7"] [org.clojure/tools.logging "0.4.1"] [org.clojure/tools.namespace "0.2.10"] - [honeysql "0.9.2"]] + [honeysql "0.9.3"]] :javac-options ["-target" "1.7", "-source" "1.7"] :aliases {"bikeshed" ["bikeshed" "--max-line-length" "118" "--var-redefs" "false"] "lint" ["do" ["eastwood"] "bikeshed" "docstring-checker"] @@ -19,11 +19,11 @@ [expectations "2.1.9"] [postgresql "9.3-1102.jdbc41"]] :plugins [[docstring-checker "1.0.2"] - [jonase/eastwood "0.2.5" + [jonase/eastwood "0.2.8" :exclusions [org.clojure/clojure]] - [lein-bikeshed "0.5.0"] + [lein-bikeshed "0.5.1"] [lein-expectations "0.0.8"] - [org.clojure/tools.cli "0.3.5"]] ; Added because of https://github.com/dakrone/lein-bikeshed/issues/33 + [org.clojure/tools.cli "0.3.7"]] ; Added because of https://github.com/dakrone/lein-bikeshed/issues/33 :jvm-opts ["-Xverify:none"] :eastwood {:add-linters [:unused-locals :unused-private-vars]