Skip to content

Commit

Permalink
Released 0.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed May 25, 2014
1 parent b1a1581 commit 9f1350e
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.8.8 (2014-05-25)

* Added Markdown extensions for definition lists and abbreviations
* Minor CSS fixes

## 0.8.7 (2014-05-22)

* Fixed bug when rendering some Markdown links
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Include the following plugin in your `project.clj` file or your global
profile:

```clojure
:plugins [[codox "0.8.7"]]
:plugins [[codox "0.8.8"]]
```

Then run:
Expand Down
2 changes: 1 addition & 1 deletion codox.core/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject codox/codox.core "0.8.7"
(defproject codox/codox.core "0.8.8"
:description "Generate documentation from Clojure source files"
:url "https://github.com/weavejester/codox"
:scm {:dir ".."}
Expand Down
2 changes: 1 addition & 1 deletion codox.example/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.3.0"]]
:plugins [[codox "0.8.7"]]
:plugins [[codox "0.8.8"]]
:source-paths ["src/clojure"]
:codox
{:project {:name "Example Project", :version "1.0.0"}
Expand Down
2 changes: 1 addition & 1 deletion codox.leiningen/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject codox/codox.leiningen "0.8.7"
(defproject codox/codox.leiningen "0.8.8"
:description "Codox Leiningen plugin"
:url "https://github.com/weavejester/codox"
:scm {:dir ".."}
Expand Down
2 changes: 1 addition & 1 deletion codox.leiningen/src/leiningen/doc.clj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
(project/merge-profiles project [:codox])
project)]
(eval/eval-in-project
(deps/add-if-missing project '[codox/codox.core "0.8.7"])
(deps/add-if-missing project '[codox/codox.core "0.8.8"])
`(codox.main/generate-docs
(update-in '~(get-options project) [:src-uri-mapping] eval))
`(require 'codox.main))))
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(defproject codox "0.8.7"
(defproject codox "0.8.8"
:description "Alias for the codox/codox.leiningen plugin"
:url "https://github.com/weavejester/codox"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[codox/codox.leiningen "0.8.7"]]
:dependencies [[codox/codox.leiningen "0.8.8"]]
:eval-in-leiningen true)

0 comments on commit 9f1350e

Please sign in to comment.