Skip to content

Commit

Permalink
Merge branch 'release-0.6.3'
Browse files Browse the repository at this point in the history
Conflicts:
	README.md
	project.clj
  • Loading branch information
greglook committed Jul 11, 2014
2 parents 3fccd7c + 3b59f41 commit fde6432
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
13 changes: 5 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Puget

[![Build Status](https://travis-ci.org/greglook/puget.svg?branch=master)](https://travis-ci.org/greglook/puget)
[![Coverage Status](https://coveralls.io/repos/greglook/puget/badge.png?branch=master)](https://coveralls.io/r/greglook/puget?branch=master)
[![Dependency Status](https://www.versioneye.com/user/projects/53718bfb14c1589a89000144/badge.png)](https://www.versioneye.com/clojure/mvxcvi:puget/0.6.2)
[![Dependency Status](https://www.versioneye.com/user/projects/53718bfb14c1589a89000144/badge.png)](https://www.versioneye.com/clojure/mvxcvi:puget/0.6.3)

Puget is a Clojure library for printing [EDN](https://github.com/edn-format/edn)
values. Under the hood, Puget formats data into a _print document_ and uses the
Expand All @@ -14,14 +14,10 @@ and [canonical printing](#canonical-representation).

## Installation

Puget releases are [published on Clojars](https://clojars.org/mvxcvi/puget).
Puget releases are published on Clojars. To use the latest version with
Leiningen, add the following dependency to your project definition:

To use this version with Leiningen, add the following dependency to your project
definition:

```clojure
[mvxcvi/puget "0.6.2"]
```
[![Clojars Project](http://clojars.org/mvxcvi/puget/latest-version.svg)](http://clojars.org/mvxcvi/puget)

See [Whidbey](https://github.com/greglook/whidbey) for nREPL and Leiningen integration.

Expand Down Expand Up @@ -123,6 +119,7 @@ color scheme.
:nil [:bold :black]
:number [:cyan]
:string [:bold :magenta]
:character [:bold :magenta]
:symbol nil
:tag [:red]}
```
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject mvxcvi/puget "0.6.2"
(defproject mvxcvi/puget "0.6.3"
:description "Colorizing canonical Clojure printer for EDN values."
:url "https://github.com/greglook/puget"
:license {:name "Public Domain"
Expand All @@ -9,7 +9,7 @@
:dependencies
[[org.clojure/clojure "1.6.0"]
[org.clojure/data.codec "0.1.0"]
[fipp "0.4.2"]]
[fipp "0.4.3"]]

:profiles
{:coverage
Expand Down
3 changes: 2 additions & 1 deletion src/puget/printer.clj
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
:boolean [:green]
:number [:cyan]
:string [:bold :magenta]
:character [:bold :magenta]
:keyword [:bold :yellow]
:symbol nil

Expand Down Expand Up @@ -182,7 +183,7 @@
(canonize-element nil :nil)
(canonize-element java.lang.Boolean :boolean)
(canonize-element java.lang.Number :number)
(canonize-element java.lang.Character :string)
(canonize-element java.lang.Character :character)
(canonize-element java.lang.String :string)
(canonize-element clojure.lang.Keyword :keyword)
(canonize-element clojure.lang.Symbol :symbol)
Expand Down

0 comments on commit fde6432

Please sign in to comment.