From a5fbb5c63ea148da5b709389cb8ab00bb7a827fa Mon Sep 17 00:00:00 2001 From: Hugo Duncan Date: Fri, 20 May 2011 22:48:33 -0400 Subject: [PATCH] Updated project.clj, release notes and readme for 0.1.6 --- README.md | 5 ++++- ReleaseNotes.md | 30 +++++++++++++++++++++++++++++- project.clj | 2 +- 3 files changed, 34 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d7ff22d..1cad11a 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,13 @@ This is alpha quality. - Allows stepping from breakpoints - Allows evaluation of expressions in the context of a stack frame - Inspection of locals in any stack frame +- Disassembly of functions from symbol or stack frame + +Should work with clojure 1.3.0-alpha7. ## Install -Add `[swank-clj "0.1.5"]` to your project.clj `:dev-dependencies`. +Add `[swank-clj "0.1.6"]` to your project.clj `:dev-dependencies`. Install the slime-clj.el contrib from [marmalade](http://marmalade-repo.org/). diff --git a/ReleaseNotes.md b/ReleaseNotes.md index b3024ea..55ee44f 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,6 +1,34 @@ # Release Notes -Current release is 0.1.5. +Current release is 0.1.6. + +* 0.1.6 + +- Add debug/pprint-eval-string-in-frame + This moves the pretty printing into the debugee + +- Unmangle clojure names for local variables + +- Fix pprint-eval-string-in-frame to correctly output a string + +- Fix generation of nested exceptions on eval-in-frame + +- Fix fuzzy completion of explicitly namespaced symbols + +- Improve filtering of unimplimented arities in disassembly listings + +- Try harder to maintain relative source paths when compiling + +- Stop focussing repl on slime-javadoc + +- Add support for invokePrim + Clojure 1.3 introduces a new function invokePrim to handle primitive + arguments. + +- disable AOT + In order for swank-clj to work across clojure versions, remove the aot. + +- Fix return value of fuzzy-completions when no completions found * 0.1.5 diff --git a/project.clj b/project.clj index 3146e23..a75e7da 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject swank-clj "0.1.6-SNAPSHOT" +(defproject swank-clj "0.1.6" :description "Another swank for clojure" :source-path "src/main/clojure" :resources-path "src/main/resources"