[pybtex] 03/20: Merge tag 'upstream/0.21'

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Sat Jul 22 21:04:53 UTC 2017


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a commit to branch master
in repository pybtex.

commit 1e653b7181e01acd8d362cc7af3f71076b48dcb3
Merge: eb0f30f d98e6fd
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date:   Fri Jul 21 13:12:40 2017 +0100

    Merge tag 'upstream/0.21'
    
    Upstream version 0.21
    
    # gpg: Signature made Fri 21 Jul 2017 13:12:36 BST
    # gpg:                using RSA key F3DB8E7525060E1BDB84C20D6A990FB3DDEB910A
    # gpg:                issuer "ghisvail at gmail.com"
    # gpg: Good signature from "Ghislain Antony Vaillant <ghisvail at gmail.com>" [ultimate]

 CHANGES                                        |  31 +++++++-
 COPYING                                        |   2 +-
 PKG-INFO                                       |   6 +-
 README                                         |   2 +-
 docs/Makefile                                  |   4 +-
 docs/man1/pybtex-convert.1                     |   8 +-
 docs/man1/pybtex-format.1                      |   8 +-
 docs/man1/pybtex.1                             |   8 +-
 docs/pybtex_doctools/__init__.py               |   2 +-
 docs/pybtex_doctools/man.py                    |   6 +-
 docs/pybtex_doctools/pygments.py               |   2 +-
 docs/site/conf.py                              |   2 +-
 docs/source/api/plugins.rst                    |   2 +-
 docs/source/conf.py                            |   4 +-
 docs/theme/layout.html                         |   2 +-
 examples/sample_plugins/toyplugins.py          |   2 +-
 examples/xampl.yaml                            |  60 +++++++-------
 pybtex/__init__.py                             |   4 +-
 pybtex/__main__.py                             |   2 +-
 pybtex/__version__.py                          |   4 +-
 pybtex/auxfile.py                              |   2 +-
 pybtex/backends/__init__.py                    |   2 +-
 pybtex/backends/html.py                        |   5 +-
 pybtex/backends/latex.py                       |  14 ++--
 pybtex/backends/markdown.py                    |   2 +-
 pybtex/backends/plaintext.py                   |   2 +-
 pybtex/bibtex/__init__.py                      |   2 +-
 pybtex/bibtex/bst.py                           |   2 +-
 pybtex/bibtex/builtins.py                      |   7 +-
 pybtex/bibtex/exceptions.py                    |   2 +-
 pybtex/bibtex/interpreter.py                   |   7 +-
 pybtex/bibtex/names.py                         |   2 +-
 pybtex/bibtex/utils.py                         |   2 +-
 pybtex/charwidths/make_charwidths.py           |  25 +++---
 pybtex/cmdline.py                              |   4 +-
 pybtex/database/__init__.py                    |   2 +-
 pybtex/database/convert/__init__.py            |   2 +-
 pybtex/database/convert/__main__.py            |   2 +-
 pybtex/database/format/__init__.py             |   2 +-
 pybtex/database/format/__main__.py             |   2 +-
 pybtex/database/input/__init__.py              |   4 +-
 pybtex/database/input/bibtex.py                |   4 +-
 pybtex/database/input/bibtexml.py              |   2 +-
 pybtex/database/input/bibyaml.py               |   4 +-
 pybtex/database/output/__init__.py             |   2 +-
 pybtex/database/output/bibtex.py               | 106 +++++++++++++++++--------
 pybtex/database/output/bibtexml.py             |   2 +-
 pybtex/database/output/bibyaml.py              |   2 +-
 pybtex/errors.py                               |   5 +-
 pybtex/exceptions.py                           |   6 +-
 pybtex/io.py                                   |   6 +-
 pybtex/kpathsea.py                             |   2 +-
 pybtex/markup/__init__.py                      |   2 +-
 pybtex/plugin/__init__.py                      |   2 +-
 pybtex/richtext.py                             |  12 +--
 pybtex/scanner.py                              |   2 +-
 pybtex/style/__init__.py                       |   2 +-
 pybtex/style/formatting/__init__.py            |   2 +-
 pybtex/style/formatting/alpha.py               |   2 +-
 pybtex/style/formatting/plain.py               |   2 +-
 pybtex/style/formatting/unsrt.py               |  42 +++++-----
 pybtex/style/formatting/unsrtalpha.py          |   2 +-
 pybtex/style/labels/__init__.py                |   2 +-
 pybtex/style/labels/alpha.py                   |   2 +-
 pybtex/style/labels/number.py                  |   2 +-
 pybtex/style/names/__init__.py                 |  13 +--
 pybtex/style/names/lastfirst.py                |   6 +-
 pybtex/style/names/plain.py                    |  19 +++--
 pybtex/style/sorting/__init__.py               |   2 +-
 pybtex/style/sorting/author_year_title.py      |   2 +-
 pybtex/style/sorting/none.py                   |   2 +-
 pybtex/style/template.py                       |  21 +++--
 pybtex/tests/__init__.py                       |   2 +-
 pybtex/tests/bibtex_parser_test.py             |   2 +-
 pybtex/tests/data/cyrillic.bib                 |  12 ++-
 pybtex/tests/data/cyrillic_alpha.bibtex.bbl    |   5 ++
 pybtex/tests/data/cyrillic_alpha.pybtex.bbl    |  12 ++-
 pybtex/tests/data/cyrillic_plain.pybtex.bbl    |  14 +++-
 pybtex/tests/data/cyrillic_unsrt.bibtex.bbl    |   5 ++
 pybtex/tests/data/cyrillic_unsrt.pybtex.bbl    |  12 ++-
 pybtex/tests/data/extrafields_unsrt.pybtex.bbl |   2 +-
 pybtex/tests/database_test/database_test.py    |   2 +-
 pybtex/tests/io_test.py                        |   2 +-
 pybtex/tests/richtext_test.py                  |   2 +-
 pybtex/tests/run_bibtex.py                     |   7 +-
 pybtex/textutils.py                            |  10 ++-
 pybtex/utils.py                                |   2 +-
 setup.cfg                                      |   2 +-
 setup.py                                       |   6 +-
 89 files changed, 377 insertions(+), 259 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/pybtex.git



More information about the debian-science-commits mailing list