Skip to content

Commit

Permalink
Merge pull request #39 from metabase/update-dep
Browse files Browse the repository at this point in the history
Update deps & bump version -> 1.1.9
  • Loading branch information
camsaul authored Jul 13, 2018
2 parents 6ef5378 + c370c51 commit addfcef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions VERSION-HISTORY.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
12 changes: 6 additions & 6 deletions project.clj
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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]
Expand Down

0 comments on commit addfcef

Please sign in to comment.