diff --git a/RELEASE.md b/RELEASE.md index a2bf539..a25a74f 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -2,17 +2,20 @@ # Release notes for Weave.jl -### Master +### 0.0.3 + +9th December 2014 * Sandbox module for running code is cleared between documents -* Fixed Latex figure handling (from @wildart) +* Fixed Latex figure handling (with contributions from @wildart) * Changed "tex" format: separate environment for term chunks * Improved test coverage +* Fixed a bug with eval=false chunk option. ### 0.0.2 -8th December 2014 +7th December 2014 * First release * Noweb and markdown input formats diff --git a/test/gadfly_formats.jl b/test/gadfly_formats.jl index 00f76bc..33dc33b 100644 --- a/test/gadfly_formats.jl +++ b/test/gadfly_formats.jl @@ -2,6 +2,7 @@ using Weave using Base.Test + weave("documents/gadfly_formats_test.txt", doctype="tex", plotlib="gadfly") result = readall(open("documents/gadfly_formats_test.tex")) ref = readall(open("documents/gadfly_formats_test_ref.tex")) diff --git a/test/runtests.jl b/test/runtests.jl index ee877fc..7f83351 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,9 +1,12 @@ using Weave using Base.Test +Pkg.add("Gadfly") +Pkg.add("Cairo") +Pkg.add("Winston") include("chunk_options.jl") -include("pyplot_formats.jl") +#include("pyplot_formats.jl") cause segfaults, but OK if run by itself #Test Gadfly and markdown reader, Gadfly only works with 0.3 diff --git a/test/winston_formats.jl b/test/winston_formats.jl index 76b8968..6920c06 100644 --- a/test/winston_formats.jl +++ b/test/winston_formats.jl @@ -1,7 +1,6 @@ using Weave using Base.Test - weave("documents/winston_formats.txt", plotlib="Winston", doctype="tex") result = readall(open("documents/winston_formats.tex")) ref = readall(open("documents/winston_formats_ref.tex"))