Skip to content

Commit

Permalink
Released 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Nov 16, 2012
1 parent 673e676 commit 39bc875
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -7,11 +7,11 @@ A tool for generating API documentation from Clojure source code.
Include the following plugin in your `project.clj` file or your global
profile:

:plugins [[codox "0.6.1"]]
:plugins [[codox "0.6.2"]]

Or, if you're using a version of Leiningen prior to 1.7.0:

:dev-dependencies [[codox "0.6.1"]]
:dev-dependencies [[codox "0.6.2"]]

Then run:

Expand Down
2 changes: 1 addition & 1 deletion codox.core/project.clj
@@ -1,4 +1,4 @@
(defproject codox/codox.core "0.6.1"
(defproject codox/codox.core "0.6.2"
:description "Generate documentation from Clojure source files"
:dependencies [[org.clojure/clojure "1.2.1"]
[org.clojure/tools.namespace "0.1.3"]
Expand Down
2 changes: 1 addition & 1 deletion codox.leiningen/project.clj
@@ -1,4 +1,4 @@
(defproject codox/codox.leiningen "0.6.1"
(defproject codox/codox.leiningen "0.6.2"
:description "Codox Leiningen plugin"
:eval-in-leiningen true
:dependencies [[leinjacker "0.2.0"]])
2 changes: 1 addition & 1 deletion codox.leiningen/src/leiningen/doc.clj
Expand Up @@ -13,6 +13,6 @@
"Generate API documentation from source code."
[project]
(eval-in-project
(deps/add-if-missing project '[codox/codox.core "0.6.1"])
(deps/add-if-missing project '[codox/codox.core "0.6.2"])
`(codox.main/generate-docs '~(get-options project))
`(require 'codox.main)))
4 changes: 2 additions & 2 deletions project.clj
@@ -1,4 +1,4 @@
(defproject codox "0.6.1"
(defproject codox "0.6.2"
:description "Alias for the codox/codox.leiningen plugin"
:dependencies [[codox/codox.leiningen "0.6.1"]]
:dependencies [[codox/codox.leiningen "0.6.2"]]
:eval-in-leiningen true)

0 comments on commit 39bc875

Please sign in to comment.