Codebase list asciidoc / 4f633e6
Merge tag 'upstream/10.0.2' into debian/master Upstream version 10.0.2 Bastian Germann 2 years ago
5 changed file(s) with 18 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
4747 user: __token__
4848 password: ${{ secrets.PYPI_API_TOKEN }}
4949
50 homebrew:
51 runs-on: macos-latest
52 needs:
53 - release
54 steps:
5055 - name: Update Homebrew formula
5156 uses: dawidd6/action-homebrew-bump-formula@v3
5257 with:
11 ==================
22
33 :website: https://asciidoc-py.github.io/
4
5 Version 10.0.2 (2021-11-12)
6 ---------------------------
7 .Bug fixes
8 - Fix errors not displaying when called via a2x (thanks @osmith42)
9 - Fix incorrect parsing of asciidoc_opts in a2x (thanks @lmarz)
10
11 .Miscellaneous
12 - Fix automating homebrew release updates
413
514 Version 10.0.1 (2021-10-28)
615 ---------------------------
00 """Module containing metadata about asciidoc."""
11
2 VERSION = (10, 0, 1)
2 VERSION = (10, 0, 2)
33
44 __version__ = '.'.join(map(str, VERSION))
979979 opts, args = parser.parse_args(argv)
980980 if len(args) != 1:
981981 parser.error('incorrect number of arguments')
982 opts.asciidoc_opts = [x.split(' ', 1) for x in opts.asciidoc_opts]
982 opts.asciidoc_opts = [x.split(' ') for x in opts.asciidoc_opts]
983983 opts.dblatex_opts = ' '.join(opts.dblatex_opts)
984984 opts.fop_opts = ' '.join(opts.fop_opts)
985985 opts.xsltproc_opts = ' '.join(opts.xsltproc_opts)
10001000 #####################################################################
10011001
10021002 if __name__ == "__main__":
1003 asciidoc.set_caller(__name__)
10031004 cli()
0 AC_INIT(asciidoc, 10.0.1)
0 AC_INIT(asciidoc, 10.0.2)
11
22 AC_SUBST([PACKAGE_DATE], ['28 October 2021'])
33