Skip to content

Commit

Permalink
v0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
gpoore committed Jun 7, 2021
1 parent 1fe2464 commit d0beafa
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 17 deletions.
20 changes: 20 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ Version History
===============


v0.18 (2021/06/06)
------------------

* ``\inputpygments`` now checks inputted files for modification, so that
typeset code will correctly update when the source is changed (#162).

* Julia now uses project flag "``--project=@.``" (#157, #158).

* Fixed bug in processing Pygments options (``pygopt``) when a key is used
without a value (#181).

* Some error handling for Windows was incompatible with other operating
systems: replaced checks for ``WindowsError`` with checks for ``OSError``
(#177).

* Rust support is now compatible with document and working directory paths
that contain spaces (#167).



v0.17 (2019/09/22)
------------------

Expand Down
2 changes: 1 addition & 1 deletion pythontex/README
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
===================================================================

:Author: Geoffrey Poore
:Version: 0.17 (2019/09/22)
:Version: 0.18 (2021/06/06)
:License: LPPL v1.3 or later (LaTeX code) and BSD 3-Clause (Python code)
:Development: https://github.com/gpoore/pythontex
:Requirements: Python 2.7 or 3.2+; Pygments
Expand Down
4 changes: 2 additions & 2 deletions pythontex/depythontex2.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
typeset with a different package.
Copyright (c) 2013-2020, Geoffrey M. Poore
Copyright (c) 2013-2021, Geoffrey M. Poore
All rights reserved.
Licensed under the BSD 3-Clause License:
http://www.opensource.org/licenses/BSD-3-Clause
Expand Down Expand Up @@ -86,7 +86,7 @@

# Script parameters
# Version
__version__ = '0.18dev'
__version__ = '0.18'


# Functions and parameters for customizing the script output
Expand Down
4 changes: 2 additions & 2 deletions pythontex/depythontex3.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
typeset with a different package.
Copyright (c) 2013-2020, Geoffrey M. Poore
Copyright (c) 2013-2021, Geoffrey M. Poore
All rights reserved.
Licensed under the BSD 3-Clause License:
http://www.opensource.org/licenses/BSD-3-Clause
Expand Down Expand Up @@ -86,7 +86,7 @@

# Script parameters
# Version
__version__ = '0.18dev'
__version__ = '0.18'


# Functions and parameters for customizing the script output
Expand Down
10 changes: 5 additions & 5 deletions pythontex/pythontex.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
%<package>\NeedsTeXFormat{LaTeX2e}[1999/12/01]
%<package>\ProvidesPackage{pythontex}
%<*package>
[2021/06/06 v0.18dev execute and typeset Python code and other languages]
[2021/06/06 v0.18 execute and typeset Python code and other languages]
%</package>
%
%<*driver>
Expand Down Expand Up @@ -168,13 +168,13 @@
%
%
%
% \begin{changelog}{v0.18}{2021/??/??}
% \begin{changelog}{v0.18}{2021/06/06}
% \begin{itemize}
% \item \texttt{\string\inputpygments} now checks inputted files for modification, so that typeset code will correctly update when the source is changed (\#162).
% \item Julia now uses project flag ``\texttt{-{}-project=@.}'' (\#157, \#158).
% \item Fixed bug in processing Pygments options (\texttt{pygopt}) when a key is used without a value (\#181).
% \item Some error handling for Windows was incompatible with other operating systems: replaced checks for WindowsError with checks for OSError (\#177).
% \item Rust support is now compatible with document or working directory paths that contain spaces (\#167).
% \item Some error handling for Windows was incompatible with other operating systems: replaced checks for \texttt{WindowsError} with checks for \texttt{OSError} (\#177).
% \item Rust support is now compatible with document and working directory paths that contain spaces (\#167).
% \end{itemize}
% \end{changelog}
%
Expand Down Expand Up @@ -1898,7 +1898,7 @@
% We store the name of the package in a macro for later use in warnings and error messages.
% \begin{macrocode}
\newcommand{\pytx@packagename}{PythonTeX}
\newcommand{\pytx@packageversion}{0.18dev}
\newcommand{\pytx@packageversion}{0.18}
% \end{macrocode}
%
% \subsection{Required packages}
Expand Down
Binary file modified pythontex/pythontex.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions pythontex/pythontex.sty
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
%%
%% This is a generated file.
%%
%% Copyright (C) 2012-2019 by Geoffrey M. Poore <[email protected]>
%% Copyright (C) 2012-2021 by Geoffrey M. Poore <[email protected]>
%% --------------------------------------------------------------------------
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.3
Expand All @@ -20,10 +20,10 @@
%%
\NeedsTeXFormat{LaTeX2e}[1999/12/01]
\ProvidesPackage{pythontex}
[2020/02/03 v0.18dev execute and typeset Python code and other languages]
[2021/06/06 v0.18 execute and typeset Python code and other languages]

\newcommand{\pytx@packagename}{PythonTeX}
\newcommand{\pytx@packageversion}{0.18dev}
\newcommand{\pytx@packageversion}{0.18}
\RequirePackage{fvextra}
\RequirePackage{etoolbox}
\RequirePackage{xstring}
Expand Down
4 changes: 2 additions & 2 deletions pythontex/pythontex2.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Licensed under the BSD 3-Clause License:
Copyright (c) 2012-2020, Geoffrey M. Poore
Copyright (c) 2012-2021, Geoffrey M. Poore
All rights reserved.
Expand Down Expand Up @@ -78,7 +78,7 @@

# Script parameters
# Version
__version__ = '0.18dev'
__version__ = '0.18'



Expand Down
4 changes: 2 additions & 2 deletions pythontex/pythontex3.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Licensed under the BSD 3-Clause License:
Copyright (c) 2012-2020, Geoffrey M. Poore
Copyright (c) 2012-2021, Geoffrey M. Poore
All rights reserved.
Expand Down Expand Up @@ -78,7 +78,7 @@

# Script parameters
# Version
__version__ = '0.18dev'
__version__ = '0.18'



Expand Down

0 comments on commit d0beafa

Please sign in to comment.