# HG changeset patch # User alys # Date 2019-06-08 21:04:10 # Node ID 27c426836a374dd3e1d006c5eab47f68c5976f2e # Parent 36a04b939ac03c47a8432544bacbf7a21afcd22d Update project to handle dependencies better and bump version to 0.1.6. diff --git a/CHANGELOG.md b/CHANGELOG.md --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ # Change Log All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/). -## [Unreleased] +## [Unreleased] ## + +### Fixed +- test.check is no longer a dependency of the entire project, just tests. + +## [0.1.5] First tracked version ### Changed diff --git a/project.clj b/project.clj --- a/project.clj +++ b/project.clj @@ -1,13 +1,13 @@ -(defproject project-checkup "0.1.5" +(defproject project-checkup "0.1.6-SNAPSHOT" :description "Makes sure your project is healthy. :)" :url "https://bitbucket.org/alysbrooks/project-checkup" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] - [org.clojure/clojurescript "1.9.521"] - [org.clojure/core.async "0.4.474"] - [org.clojure/test.check "0.10.0-alpha3"]] + [org.clojure/clojurescript "1.9.521"] ] :main ^:skip-aot project-checkup.core :target-path "target/%s" - :profiles {:uberjar {:aot :all}}) + :profiles {:uberjar {:aot :all} + :test {:dependencies [[org.clojure/test.check "0.10.0-alpha3"]]} + })