diff --git a/README.md b/README.md index 2c2f827..28cf102 100644 --- a/README.md +++ b/README.md @@ -6,23 +6,23 @@ Map and Set structures that rememeber the insertion order of its elements, even ## Download -[![Clojars Project](http://clojars.org/linked/latest-version.svg)](http://clojars.org/linked) +[![Clojars Project](http://clojars.org/frankiesardo/linked/latest-version.svg)](http://clojars.org/frankiesardo/linked) ## Map (use 'linked.map) (linked-map :b 2 :a 1 :d 4) - => #linked/map ([:b 2] [:a 1] [:d 4]) + => #linked/map {:b 2, :a 1, :d 4} (assoc (ordered-map :b 2 :a 1 :d 4) :c 3) - => #linked/map ([:b 2] [:a 1] [:d 4] [:c 3]) + => #linked/map {:b 2, :a 1, :d 4, :c 3} (into (linked-map) [[:c 3] [:a 1] [:d 4]]) - => #linked/map ([:c 3] [:a 1] [:d 4]) + => #linked/map {:c 3, :a 1, :d 4} (dissoc (linked-map :c 3 :a 1 :d 4) :a) - => #linked/map ([:c 3] [:d 4]) + => #linked/map {:c 3, :d 4} ## Set diff --git a/project.clj b/project.clj index 7c347e3..2c99380 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject frankiesardo/linked "1.0.0" +(defproject frankiesardo/linked "1.0.4" :description "Efficient ordered map and set" :url "http://github.com/frankiesardo/linked" :license {:name "Eclipse Public License" @@ -11,8 +11,10 @@ [com.cemerick/clojurescript.test "0.3.1"]] :aliases {"cleantest" ["do" "clean," "cljx" "once," "test," "cljsbuild" "test"] - "cleancheck" ["do" "clean," "cljx" "once," "check"] - "deploy" ["do" "clean," "cljx" "once," "deploy" "clojars"]}}} + "cleancheck" ["do" "clean," "cljx" "once," "check"]}}} + + :auto-clean false + :jar-exclusions [#"\.cljx"] :cljx {:builds [{:source-paths ["src"] :output-path "target/classes"