Skip to content

Commit

Permalink
Updated project.clj, release notes and readme for 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoduncan committed May 21, 2011
1 parent 14096db commit a5fbb5c
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Expand Up @@ -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/).

Expand Down
30 changes: 29 additions & 1 deletion 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

Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down

0 comments on commit a5fbb5c

Please sign in to comment.