aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-09-24Set release versions to 1.3.0-alpha11.3.0-alpha1Stuart Sierra
2010-09-23Add distributionManagement sections to top-level and parent POMsStuart Sierra
2010-09-23Use clojure.version property in AOT-compiled modulesStuart Sierra
2010-09-23Use clojure.contrib.version property in all modulesStuart Sierra
2010-09-23Create clojure.contrib.version property in parentStuart Sierra
2010-09-23:require clojure.set in accumulators as it's not auto-loaded anymoreStuart Sierra
2010-09-23Set clojure.version to 1.3.0-master-SNAPSHOTStuart Sierra
2010-09-23Revert "[maven-release-plugin] prepare release 1.3.0"Stuart Sierra
This reverts commit d6e13bca9b78b7124f8e787be70704b32173fd1c.
2010-09-23Revert "[maven-release-plugin] prepare for next development iteration"Stuart Sierra
This reverts commit d5529fd47a7e0ce4001b2588def1ffcd1fe9e274.
2010-09-17[maven-release-plugin] prepare for next development iterationStuart Sierra
2010-09-17[maven-release-plugin] prepare release 1.3.0Stuart Sierra
2010-09-17Remove extra xmlns declarations from POMs (breaks release plugin)Stuart Sierra
2010-09-17Set clojure.version to 1.2.0 for releaseStuart Sierra
2010-09-17Add latest Maven build plugin to top-level POMStuart Sierra
2010-09-17Base64 decoding from Teemu Antti-Poika; refs #84Stuart Sierra
2010-09-17Fix EOF-handling in JSON reader; refs #91Stuart Sierra
2010-09-17Fix broken with-ns tests; refs #95Stuart Sierra
* broken by Clojure commit 1c0468dbe5228bb8c228e1370133bbe1d018e058 * Clojure's compiler exceptions changed their format
2010-09-16Fix broken repl-utils/showChouser
Was broken since fe4ed311166677cd571d23774171af1d830f7fc5 Fixes #94 Also add a bit more type info in class component maps.
2010-09-08Fix arglist doc for level-specific macrosAlexander Taggart
2010-09-05commenting out tests that fail only on build machineAlexander Taggart
2010-09-03Merge branch 'master' of git://github.com/clojure/clojure-contribKonrad Hinsen
2010-09-03macro-utils: don't expand symbols bound in the surrounding lexical environmentKonrad Hinsen
2010-09-03AOT-compiled modules depend specifically on Clojure 1.2.0Stuart Sierra
2010-09-03Add AOT-compilation for modules that gen-classStuart Sierra
2010-09-03Inhibit all AOT-compilation in parent moduleStuart Sierra
2010-09-03removed deprecated subset?, superset? from clojure.contrib.setBen Smith-Mannschott
Both functions have been promoted to clojure.set. Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03removed 9 deprecated functions from clojure.contrib.repl-utilsBen Smith-Mannschott
Promoted to clojure.core: - flatten - group-by - partition-by - frequencies - reductions - partition-all - shuffle - rand-elt (clojure.core/rand-nth) Not promoted to clojure.core: - includes? prefer 'contains?' for key testing, or 'some' for ad hoc linear searches. Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03removed deprecated clojure.contrib.seq-utilsBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03removed deprecated source, get-source, apropos from clojure.contrib.repl-utils.Ben Smith-Mannschott
available in clojure.repl as source, source-fn, and apropos, respectively. Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03removed deprecated clojure.contrib.pprintBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03removed deprecated clojure.contrib.java-utilsBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03removed deprecated clojure.contrib.duck-streamsBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03remove deprecated clojure.contrib.stringBen Smith-Mannschott
Since clojure.contrib.string is used by other submodules, some changes were required: - gen-html-docs and prxml needed changes because of functions were renamed or arguments reordered when promoted to clojure.string. - jmx, json, miglayout, prxml and sql gained a private one-argument implementation of as-str. - repl-utils gained a private copy of c.c.string/partition, named spartition. - repl-utils replaced a call to c.c.string/substring? with a call to the java String method '.contains' (with swapped argument order). Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03remove deprecated clojure.contrib.str-utils2Ben Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03remove deprecated clojure.contrib.str-utilsBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03remove deprecated clojure.contrib.ioBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03removed c.c.shell and c.c.shell-outBen Smith-Mannschott
Both are deprecated in 1.2 and have been replaced by clojure.java.shell. Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03remove deprecated clojure.contrib.test-isBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03remove deprecated clojure.contrib.javadocBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03remove deprecated clojure.contrib.propertiesBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03remove deprecated clojure.contrib.http-connectionBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03remove deprecated clojure.contrib.http-agentBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03remove derecated clojure.contrib.apply-macroBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-09-03gen-html-docs needs clojure.contrib.defBen Smith-Mannschott
Signed-off-by: Stuart Sierra <mail@stuartsierra.com>
2010-08-26Added :pre to functions instead of using custom assert-args macro in ↵Matt Clark
c.c.mock Cleaned up c.c.mock documentation Removed map? preconditions on mock functions which was causing tests to fail updated copyright notices for mock improved mock namespace description Fixed line endings which were erroneously CRLF instead of LF
2010-08-25Update links in READMEStuart Sierra
2010-08-24Merge branch 'better_uberjar'Stuart Sierra
2010-08-24Omit Clojure files from complete 'uberjar'Stuart Sierra
2010-08-22Tests for c.c.loggingAlexander Taggart
2010-08-22New features:Alexander Taggart
- log macros for using print-style args - log macros for using format-style args - Log and LogFactory protocols allow for providing alternate implementations - *tx-agent-levels* and *force* allow controlling the direct vs agent behavior Improvements: - *logging-agent* uses :error-mode :continue - log-capture! now optionally takes args specifying out and err logging levels - with-logs now optionally takes args specifying out and err logging levels - Fixed synchronization issue around calling System.setOut/setErr - Avoided reflection in log-stream - spy uses pprint to format output Breaking changes: - *allow-direct-logging*: Replaced with improved functionality via *force* - *impl-name*: Replaced with impl-name fn on LogFactory protocol - trace/debug/etc: throwable position changed to allow for print-style args - log: throwable position changed to keep consistency with message-last layout of print- and format-style args'