summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-12-31remove qualifier for 1.1.0 release1.1.01.1.xRich Hickey
2009-12-31Merge branch 'master' into 1.1.xRich Hickey
2009-12-31only append non-blank qualifier to clojure-versionRich Hickey
2009-12-29move to rc3Rich Hickey
2009-12-29Merge branch 'master' into 1.1.xRich Hickey
2009-12-29throw AssertionError from assertRich Hickey
2009-12-23moved to rc2Rich Hickey
2009-12-23Merge branch 'master' into 1.1.xRich Hickey
2009-12-23empty for sorted-map and sorted-set now maintain comparator. Fixes #128Chouser
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-12-23fix transient arraymaps persistent! so once-onlyRich Hickey
fix docstrings in ensureEditable to use Transient and persistent!
2009-12-17move to rc1Rich Hickey
2009-12-17added changes.txt, setup version.propertiesRich Hickey
2009-12-17Slight clean-ups to a few doc stringsTom Faulhaber
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-12-17fix name conflict - bound-fn. fixes #225Rich Hickey
2009-12-17main.clj: deprecation warning w/ usage for legacy repl/script; refs #218Stuart Sierra
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-12-17removed add/remove watcher, added alpha designation to watches, promises, ↵Rich Hickey
transients
2009-12-08clojure.test/run-tests: return summary, add successful?; refs #193Stuart Sierra
Reformatted patch. Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-12-08Reinstated lost doc string for filterTom Faulhaber
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-12-03Add :doc and :author metadata to core namespaces; fixes #216, fixes #217Stuart Sierra
Signed-off-by: Chouser <chouser@n01se.net>
2009-12-03deprecate add-classpath in docstring, print warning; fixes #214Stuart Sierra
Signed-off-by: Chouser <chouser@n01se.net>
2009-12-03Print deprecation warning for ^ reader macro; refs #215Chouser
Signed-off-by: Chouser <chouser@n01se.net>
2009-12-03Remove deprecated ^ reader macro from core sources; refs #215Stuart Sierra
Signed-off-by: Chouser <chouser@n01se.net>
2009-12-02Add branch name "master" to version.propertiesChouser
2009-11-25removed more shadowing #210Timothy Pratley
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-25fixed sorted-set-by with no items, and added test coverageTimothy Pratley
Signed-off-by: Timothy Pratley <timothypratley@gmail.com> Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24#209 Unifying array support for primativesunknown
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24add type-hint to defmethod to avoid spurious reflection warningsChas Emerick
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24fixed zip/down on leaves, refs #185Achim Passen
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24Add clojure.test.junit; refs #160Stuart Sierra
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24Add char? fn to test for Character.Drew Raines
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24give meaningful names to inline expanders, fix #136Mike Hinchey
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24zip/children now checks whether the node is a branchMeikel Brandmeyer
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-24*-seq should return nil if the LazySeq is empty.Drew Raines
Signed-off-by: Rich Hickey <richhickey@gmail.com>
2009-11-13fix some's doc stringRich Hickey
2009-11-10make -> and ->> metadata-aware Fixes #206Christophe Grand
Signed-off-by: Chouser <chouser@n01se.net>
2009-11-10Preserve type hints set on inlined or interop forms, fixes #205Christophe Grand
Signed-off-by: Chouser <chouser@n01se.net>
2009-11-10Added bound-fn to define thread-local binding aware functionsMeikel Brandmeyer
bound-fn captures the thread-local bindings in effect where the function is defined. Installs these bindings before executing the body. This is useful for helper functions running in a different thread. Excluded with-bindings from clojure/main.clj to prevent name clash. Fixes #170 Signed-off-by: Chouser <chouser@n01se.net>
2009-10-28Preserve test var metadata within deftest. Fixes #201.Phil Hagelberg
Signed-off-by: Chouser <chouser@n01se.net>
2009-10-28Don't repeatedly compose on calls to use-fixtures. Fixes #194.Phil Hagelberg
Updated tests and added a docstring to use-fixtures. Signed-off-by: Chouser <chouser@n01se.net>
2009-10-28Fix incorrect exception message when first argument to def is not a symbol - ↵Lauri Pesonen
fix #175 Signed-off-by: Chouser <chouser@n01se.net>
2009-10-28added sorted-set-by, adapted from timothypratley's patch, fixes #79Chas Emerick
Signed-off-by: Chouser <chouser@n01se.net>
2009-10-17improve error message on seqFrom to include full classnameRich Hickey
2009-10-16Implement take-last Fixes #151Chouser
2009-09-29fixes for count in HashCollisionNodeRich Hickey
2009-09-28embedded constants, refs #164tpratley
Primitive Class objects are now handled explicitly eg: (eval `(make-array ~Byte/TYPE 2)) Signed-off-by: Chouser <chouser@n01se.net>
2009-09-28Fix compare doc defect - fixes #189unknown
Signed-off-by: Chouser <chouser@n01se.net>
2009-09-28implemented TransientHashSet Fixes #173Christophe Grand
Signed-off-by: Chouser <chouser@n01se.net>
2009-09-28Fix namespace for (symbol "/")Jarkko Oranen
Fixes #179 Signed-off-by: Chouser <chouser@n01se.net>
2009-09-28fix #171: ns reflection warnings, and others that are easyMike Hinchey
Signed-off-by: Chouser <chouser@n01se.net>
2009-09-28Added public thread-local bindings interfaceMeikel Brandmeyer
Added push-thread-bindings, pop-thread-bindings and get-thread-bindings to interface with clojure.lang.Var for thread-local bindings. Modified binding to use the new interface. Fixes #169 Signed-off-by: Chouser <chouser@n01se.net>