Skip to content

Commit

Permalink
Final prep for 0.1.23 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hlship committed Feb 11, 2016
1 parent a5c7b09 commit 82f21b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 0.1.23 - UNRELEASED
## 0.1.23 - 11 Feb 2016

`parse-exception` can now handle method names containing '<' and '>' (used for instance and class
`parse-exception` can now handle method names containing `<` and `>` (used for instance and class
constructor methods), as well as other cases from real-life stack traces.

Stack traces were omitted when the deepest stack frame was via `ex-info`; this has been corrected.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
#

# The full version, including alpha/beta/rc tags.
release = u'0.1.21'
release = u'0.1.23'

# The short X.Y version.
version = release
Expand Down
10 changes: 5 additions & 5 deletions docs/lein-plugin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ of your :file:`project.clj`.
.. code-block:: clojure
(defproject ...
:plugins [[io.aviso/pretty "0.1.20"]]
:plugins [[io.aviso/pretty "0.1.23"]]
:dependencies [...
[io.aviso/pretty "0.1.20"]]
[io.aviso/pretty "0.1.23"]]
...)
Adjust for the current version, "|release|".
Adjust if necessary, for the current version, "|release|".

This adds middleware to enable pretty exception reporting when running a REPL, tests,
or anything else that starts code in the project.
Expand All @@ -27,8 +27,8 @@ Another option is to add the following to your :file:`~/.lein/profiles.clj`:
.. code-block:: clojure
:pretty {
:plugins [[io.aviso/pretty "0.1.20"]]
:dependencies [[io.aviso/pretty "0.1.20"]]
:plugins [[io.aviso/pretty "0.1.23"]]
:dependencies [[io.aviso/pretty "0.1.23"]]
}
This creates an opt-in profile that adds and enables pretty exception reporting.
Expand Down

0 comments on commit 82f21b1

Please sign in to comment.