Skip to content

Commit

Permalink
Preparing new release.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomduck committed Nov 10, 2020
1 parent 9dd6148 commit 6ab8ac6
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
4 changes: 3 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
pandoc-fignos 2.X.X (unreleased)
pandoc-fignos 2.4.0 (unreleased)

* Use nonbreaking space between ref name and number in caption
(pandoc-xnos Issue #14).
* Require pandoc-xnos 2.5.0 (updated to work with pandoc 2.11;
pandoc-fignos Issue #85).


pandoc-fignos 2.3.1 (2020-07-31)
Expand Down
8 changes: 4 additions & 4 deletions DEVELOPERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ Check that you are in the `master` branch.

Tagging (update the version number):

git tag -a 2.3.1 -m "New release."
git push origin 2.3.1
git tag -a 2.4.0 -m "New release."
git push origin 2.4.0


### Distributing ###
Expand All @@ -117,7 +117,7 @@ Create source and binary distributions using

Upload to pypi (update the version number) using

twine upload dist/pandoc-fignos-2.3.1.tar.gz \
dist/pandoc_fignos-2.3.1-py3-none-any.whl
twine upload dist/pandoc-fignos-2.4.0.tar.gz \
dist/pandoc_fignos-2.4.0-py3-none-any.whl

(see https://pypi.python.org/pypi/twine).
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@

**New in 2.3.1:** Updated for pandoc 2.10.1.
**New in 2.4.0:** Updated for pandoc 2.11.

[more...](#whats-new)


pandoc-fignos 2.3.1
pandoc-fignos 2.4.0
===================

*pandoc-fignos* is a [pandoc] filter for numbering figures and their references when converting from markdown to other formats. It is part of the [pandoc-xnos] filter suite. LaTeX/pdf, html, and epub output have native support. Native support for docx output is a work in progress.

Demonstration: Processing [demo3.md] with pandoc + pandoc-fignos gives numbered figures and references in [pdf][pdf3], [tex][tex3], [html][html3], [epub][epub3], [docx][docx3] and other formats.

This version of pandoc-fignos was tested using pandoc 1.15.2 - 2.10.1,<sup>[1](#footnote1)</sup> and may be used with linux, macOS, and Windows. Bug reports and feature requests may be posted on the project's [Issues tracker]. If you find pandoc-fignos useful, then please kindly give it a star [on GitHub].
This version of pandoc-fignos was tested using pandoc 1.15.2 - 2.11.1.1,<sup>[1](#footnote1)</sup> and may be used with linux, macOS, and Windows. Bug reports and feature requests may be posted on the project's [Issues tracker]. If you find pandoc-fignos useful, then please kindly give it a star [on GitHub].

See also: [pandoc-eqnos], [pandoc-tablenos], [pandoc-secnos] \
Other filters: [pandoc-comments], [pandoc-latex-extensions]
Expand Down Expand Up @@ -325,6 +325,8 @@ Developer notes are maintained in [DEVELOPERS.md].
What's New
----------

**New in 2.4.0:** Updated for pandoc 2.11.

**New in 2.3.1:** Updated for pandoc 2.10.1.

**New in 2.2.0:** Html/epub subfigures support.
Expand Down
2 changes: 1 addition & 1 deletion pandoc_fignos.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""pandoc-fignos: a pandoc filter that inserts figure nos. and refs."""


__version__ = '2.3.1'
__version__ = '2.4.0'


# Copyright 2015-2020 Thomas J. Duck.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
download_url='https://github.com/tomduck/pandoc-fignos/tarball/' + \
__version__,

install_requires=['pandoc-xnos >= 2.4.3, < 3.0'],
install_requires=['pandoc-xnos >= 2.5.0, < 3.0'],

py_modules=['pandoc_fignos'],
entry_points={'console_scripts':['pandoc-fignos = pandoc_fignos:main']},
Expand Down

0 comments on commit 6ab8ac6

Please sign in to comment.