Skip to content

Commit

Permalink
Released 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed May 3, 2014
1 parent cb0db83 commit 3ded192
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions HISTORY.md
@@ -1,3 +1,10 @@
## 0.7.0 (2014-04-03)

* ClojureScript support
* Leiningen `:source-paths` respected
* URLs in docstrings turned into links
* Fixed links to vars with non-alphanumeric characters

## 0.6.8 (2014-04-27)

* Show `:added` and `:deprecated` metadata in docs
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ Include the following plugin in your `project.clj` file or your global
profile:

```clojure
:plugins [[codox "0.6.8"]]
:plugins [[codox "0.7.0"]]
```

Then run:
Expand Down
2 changes: 1 addition & 1 deletion codox.core/project.clj
@@ -1,4 +1,4 @@
(defproject codox/codox.core "0.7.0-SNAPSHOT"
(defproject codox/codox.core "0.7.0"
: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
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.7.0-SNAPSHOT"]]
:plugins [[codox "0.7.0"]]
:source-paths ["src/clojure"]
:profiles {:cljs {:dependencies [[org.clojure/clojure "1.5.1"]]
:codox {:language :clojurescript}}})
2 changes: 1 addition & 1 deletion codox.leiningen/project.clj
@@ -1,4 +1,4 @@
(defproject codox/codox.leiningen "0.7.0-SNAPSHOT"
(defproject codox/codox.leiningen "0.7.0"
: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
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.7.0-SNAPSHOT"])
(deps/add-if-missing project '[codox/codox.core "0.7.0"])
`(codox.main/generate-docs '~(get-options project))
`(require 'codox.main)))
4 changes: 2 additions & 2 deletions project.clj
@@ -1,7 +1,7 @@
(defproject codox "0.7.0-SNAPSHOT"
(defproject codox "0.7.0"
: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.7.0-SNAPSHOT"]]
:dependencies [[codox/codox.leiningen "0.7.0"]]
:eval-in-leiningen true)

0 comments on commit 3ded192

Please sign in to comment.