Skip to content

Commit

Permalink
Merge branch 'release/0.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsantiago committed Aug 23, 2012
2 parents 595efaf + bc4d6e2 commit 3a58135
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -6,5 +6,5 @@ lib
classes
build
/stencil
test/spec
/target
.lein-*
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -148,6 +148,9 @@ it as soon as possible.

## Recently

* Released version 0.3.1.
- Update version of core.cache to one that fixes bugs.

* Released version 0.3.0.
- Performance improvements (Thanks YourKit!).
- Keywords are now preferred over strings in contexts.
Expand Down
7 changes: 4 additions & 3 deletions project.clj
@@ -1,10 +1,10 @@
(defproject stencil "0.3.0"
(defproject stencil "0.3.1"
:description "Mustache in Clojure"
:dependencies [[org.clojure/clojure "1.3.0"]
[scout "0.1.0"]
[quoin "0.1.0"]
[slingshot "0.8.0"]
[org.clojure/core.cache "0.6.1"]]
[org.clojure/core.cache "0.6.2"]]
:profiles {:dev {:dependencies [[org.clojure/data.json "0.1.2"]]}
:clj1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]}
:clj1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
Expand All @@ -16,4 +16,5 @@
:releases {:checksum :fail :update :always}}
"sonatype-snapshots" {:url "http://oss.sonatype.org/content/repositories/snapshots"
:snapshots true
:releases {:checksum :fail :update :always}}})
:releases {:checksum :fail :update :always}}}
:test-paths ["test/" "target/test/spec"])
2 changes: 1 addition & 1 deletion test/stencil/test/spec.clj
Expand Up @@ -7,7 +7,7 @@
[clojure.java.io :as io]))

(def repo-url "https://github.com/mustache/spec.git")
(def spec-dir "test/spec")
(def spec-dir "target/test/spec")

;; Acquiring the specs

Expand Down

0 comments on commit 3a58135

Please sign in to comment.