Updated tests, release notes for 0.0.3

pull/21/head v0.0.3
Matti Pastell 2014-12-09 22:17:20 +02:00
parent ab3cb7955a
commit 0c36d03436
4 changed files with 11 additions and 5 deletions

View File

@ -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

View File

@ -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"))

View File

@ -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

View File

@ -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"))