summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-07-03support overlapping ensures with no retry, refs #143ensureRich Hickey
2009-07-03fix compile-time NPE on set! of non-existent field, fixes #142Rich Hickey
2009-07-01in defn, propagate pre/post conditions written as map trailing arglist to ↵Rich Hickey
metadata on arglist
2009-06-30added ref min/max history control - refs #138Rich Hickey
2009-06-25Test reading of numbers like "1." and "1.e3". Fixes #117Steve Gilardi
Signed-off-by: Chouser <chouser@n01se.net>
2009-06-25made copyright notices uniformRich Hickey
2009-06-25changed test target to "test"Rich Hickey
2009-06-25Merge branch 'gtic' of git://github.com/stuarthalloway/clojure into gticRich Hickey
2009-06-24:pre and :post conditions as metadata on arglist, or map following arglistRich Hickey
conditions are predicate exprs in a vector return value of fn is bound to % for :post (defn foo [x y] {:pre [(even? x) (< x y)] :post [(> % 3)]} (* x y)) add *assert*, default true, when not true asserts are no-ops *assert* is bound in repl
2009-06-24allow %s not in #(), yields as-is symbolRich Hickey
2009-06-24gtic: brought clojure.test's self-tests over from contribStuart Halloway
2009-06-24gtic package renamings:Stuart Halloway
- clojure.contrib to clojure - clojure.test-is to test
2009-06-24gtic: tests now passing (broke dep on java-utils)Stuart Halloway
2009-06-24gtic: break dependency on combinatorics via all-areStuart Halloway
2009-06-24gtic work-in-progress:Stuart Halloway
test libraries moved over tests moved over build broken (next commits will break dependencies)
2009-06-22Rev fa3d2497 causes compile to fail on some VMs -- back it out. Refs #124Chouser
2009-06-21core: make every? return false instead of nilJarkko Oranen
Refs #71 Signed-off-by: Chouser <chouser@n01se.net>
2009-06-20Add a call to Agent.shutdown() at the end of clojure.lang.Compile/main Refs #124Chas Emerick
Signed-off-by: Chouser <chouser@n01se.net>
2009-06-20add optional pad argument to partition. Fixes #120Dimitry Gashinsky
Signed-off-by: Chouser <chouser@n01se.net>
2009-06-19Bring documentation for 'require up to dateJarkko Oranen
Signed-off-by: Chouser <chouser@n01se.net>
2009-06-19add an optional encoding argument to slurp. Fixes #125Chas Emerick
Signed-off-by: Chouser <chouser@n01se.net>
2009-06-19parse "1." and "1.e3" as legal floats. Refs #117Steve Gilardi
Signed-off-by: Chouser <chouser@n01se.net>
2009-06-19removed nth overloadRich Hickey
2009-06-15Merge branches 'technomancy/ignore' and 'technomancy/ignore'Rich Hickey
2009-06-15added clojure.ipr and clojure.iws to .gitignoreRich Hickey
2009-06-13Add .gitignore file. Covers classes, jars, and pom.xml.Phil Hagelberg
2009-06-12added more future fns, fixed print of pending futures, added promise/deliverRich Hickey
2009-05-29backed out count inliningRich Hickey
2009-05-28made vector seqs chunked by defaultRich Hickey
2009-05-28added reduce to quotient and remainderRich Hickey
2009-05-28added ArrayChunk end bound and ChunkBufferRich Hickey
2009-05-28perf tweaks to count, nthRich Hickey
2009-05-28first cut of chunked seqsRich Hickey
Chunked seqs, initial Java-side support
2009-05-27get rid of root classloader. Establish dynamic context classloader for repl ↵Rich Hickey
thread. Default true for *use-context-classloader*
2009-05-26avoid reflecting on nil instance method targetRich Hickey
2009-05-25trap instance method calls to known nil targets at compile timeRich Hickey
2009-05-25switched binding to use let instead of doRich Hickey
2009-05-22propagate line numbers in top-level macroexpansionRich Hickey
2009-05-18enhanced message for Can't call public method of non-public classRich Hickey
2009-05-16do unrolls at top-levelRich Hickey
2009-05-15use context classloader as parent for dynamic classloadersRich Hickey
2009-05-14made main a better interop example, using RT.var and Symbol.internRich Hickey
2009-05-13steps in improving modularity - moving classname resolution towards consumer ↵Rich Hickey
in: ns - wraps require and use calls in with-loading-context
2009-05-08first steps in improving modularity - moving classname resolution towards ↵Rich Hickey
consumer in: new, static calls, class literals and import. Note import is now a macro (but tolerant of quotes for backwards compatibility)
2009-05-04move trunk to 1.1Rich Hickey
2009-05-041.0.0 baselineRich Hickey
2009-04-29Use platform default encoding for *in*, *out*, and *err* [issue 112], patch ↵Rich Hickey
from scgilardi
2009-04-28copy versioned jars to unversioned on build, patch from Rich Hickey
laurent.petit made :major :minor :incremental parts of *clojure-version* integers
2009-04-28improved error msg for unresolved ClassName/staticFieldRich Hickey
2009-04-27added support for versioned builds, alignment with *clojure-version*, ↵Rich Hickey
(clojure-version) function. Note this will create jars with names like: clojure-1.0.0-RC1-SNAPSHOT.jar [issue 110], patch from laurent.petit