Skip to content

Commit

Permalink
Release v0.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mpastell committed Jan 15, 2016
1 parent 53609d7 commit 6b5f490
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 65 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
In 0.23.2
* Add --latex_engine option to pypublish. Enables the use xetex or luatex
* Bug fixes
- Fix formatting bugs for eval=FALSE #18
- Fix white space error in code chunks for wrap = FALSE #24
- Fix unicode bug with pypublish #21
- Update pypublish template to include textcomp due to changes in Pandoc #23

In 0.23.1
* Fix for multiline indented blocks by @abukaj
* Pypublish missing \begin{document} problem fixed by @abukaj
Expand Down Expand Up @@ -37,7 +45,7 @@ In 0.22
* Output formats:
- Leanpub markdown
* New options for figures
- f_size ( (8,6) ) Saved figure size in inches a tuple (w, h)
- f_size ( (8,6) ) Saved figure size in inches a tuple (w, h)
- f_env (None) Environment that goes around figure e.g. sidefigure
- f_spines (True) removes spines from figure right and top if False.
- complete (False)
Expand Down
64 changes: 1 addition & 63 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,69 +62,7 @@ Pweave documentation can be found from the website http://mpastell.com/pweave
Release Notes
-------------

**Release 0.23.1**

* Fix for multiline indented blocks by @abukaj
* Pypublish missing \begin{document} problem fixed by @abukaj
* Fix for pandoc 1.14 - \tightlist not defined @trsaunders

**Release 0.23**

* New Python option ``--shell`` eshell, runs python as subprocess and is not affected by Pweave imports.
* Pweave can now be used to weave Octave, Matlab and Julia code using ``--shell`` option. Have a look at the examples on Github.


**Release 0.22.2**

* Figure and cache directory are now handled relative to weaved document
* Fixed caching
* Improved error reporting and exception handling

**Release 0.22.1**

* Fixed a bug with inline code chunks.

**Release 0.22**

* Package global options moved to pweave.rcParams. This is a breaking
change if you have used Pweb class to modify Pweave options. Should not affect commandline usage.
* Renamed pweave.pweave to pweave.weave, pweave.ptangle to pweave.tangle
* Python 3 compatibilty, Thanks to Grant Goodyear https://github.com/g2boojum
* Publishing of scripts from command line : pypublish script
* Conversion between input formats and markups: Pweave-convert script

- Convert to IPython notebooks by Aaron O'Leary https://github.com/aaren

* Possibility to run shell code from Pweave. See `engine` chunk option.
* New input formats:

- Script
- IPython notebook

* Bugfix: setting figure format from command line fixed.
* Ipython terminal
* Source option for chunks

- Read from module
- Read from file

* Multichunk blocks: complete option
* rst format uses `.. codeblock::` python directive for code chunks.
* Output formats:

- Leanpub markdown

* New options for figures

- f_size ( (8,6) ) Saved figure size in inches a tuple (w, h)
- f_env (None) Environment that goes around figure e.g. sidefigure
- f_spines (True) removes spines from figure right and top if False.
- complete (False)
- source: Read chunk source from file or python module or file
- engine: Choose engine running the code. "python" or "shell"


Release notes for previous versions are in: http://mpastell.com/pweave/release.html
See `GHANGELOG.txt <https://github.com/mpastell/Pweave/blob/master/CHANGELOG.txt>`_ for changes in each release.

License information
-------------------
Expand Down
2 changes: 1 addition & 1 deletion pweave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .config import *
import copy

__version__ = '0.23.1+'
__version__ = '0.23.2'


def weave(file, doctype='rst', informat="noweb", shell="python", shell_path=None, plot=True,
Expand Down

0 comments on commit 6b5f490

Please sign in to comment.