From 76aeef864f5d5cd9aa98a511ce1b74cd60d35f61 Mon Sep 17 00:00:00 2001 From: Benedek Fazekas Date: Tue, 7 Apr 2015 22:10:06 +0100 Subject: [PATCH] prepare 0.4.1 release --- README.md | 6 +++--- project.clj | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 91cbe64..9d09661 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Somewhat node.js & npm style dependency handling as a leiningen plugin. **Fancy words: 'npm style dependency handling' but what is this project is really about?** -It basically makes inlining a less burdensome task. It automatically retrieves and prefixes your dependencies (both clojure source and java class files) and munges your clojure files -- mainly the namespace declaration but not only -- accordingly. +It is an inlining tool which inlines your project's dependencies at packaging time. It automatically retrieves and prefixes your dependencies (both clojure source and java class files) and munges your clojure files -- mainly the namespace declaration but not only -- accordingly. ## Prerequisites @@ -14,7 +14,7 @@ It basically makes inlining a less burdensome task. It automatically retrieves a ## Usage -Put `[thomasa/mranderson "0.4.0"]` into the `:plugins` vector of your project.clj. +Put `[thomasa/mranderson "0.4.1"]` into the `:plugins` vector of your project.clj. Additionally you also need to mark some of the dependencies in your dependencies vector in the project's `project.clj` with `^:source-dep` meta tag. For example: @@ -31,7 +31,7 @@ Now you are ready to run: this retrieves dependencies and creates a deeply nested directory structure for them in `target/srcdeps` directory. It also munges all clojure source files accordingly. More over it uses [Jar Jar Links](https://code.google.com/p/jarjar/) to repackage your java class files dependencies if any. -If you don't want mranderson to repackage your java dependencies you can opt out by passing `skip-javaclass-repackage true` as a parameter to `source-deps` task. +If you don't want mranderson to repackage your java dependencies you can opt out by passing `:skip-javaclass-repackage true` as a parameter to `source-deps` task. After that you can run your tests or your repl with: diff --git a/project.clj b/project.clj index 7925944..22ebb8c 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject thomasa/mranderson "0.5.0-SNAPSHOT" +(defproject thomasa/mranderson "0.4.1" :description "Leiningen plugin to download and use some dependencies as source." :url "https://github.com/benedekfazekas/mranderson" :license {:name "Eclipse Public License"