Skip to content
This repository was archived by the owner on Oct 17, 2021. It is now read-only.

Commit 80055fb

Browse files
committed
Prepare 8.6.10 release
For issue #103
1 parent 031c087 commit 80055fb

File tree

6 files changed

+16
-7
lines changed

6 files changed

+16
-7
lines changed

CHANGELOG.txt

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ AsciiDoc ChangeLog
44
:website: http://asciidoc.org/
55

66

7+
Version 8.6.10 (2017-09-22)
8+
---------------------------
9+
.Additions and changes
10+
- Improve reproducibility of builds (e.g. support SOURCE_DATE_EPOCH)
11+
- Add SVG output support
12+
- Improve documentation
13+
- Update translations
14+
- Full list of changes is at https://github.com/asciidoc/asciidoc/compare/asciidoc:8.6.9...asciidoc:8.6.10
15+
716
Version 8.6.9 (2013-11-09)
817
--------------------------
918
.Additions and changes

a2x.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import codecs
2525

2626
PROG = os.path.basename(os.path.splitext(__file__)[0])
27-
VERSION = '8.6.9'
27+
VERSION = '8.6.10'
2828

2929
# AsciiDoc global configuration file directory.
3030
# NOTE: CONF_DIR is "fixed up" by Makefile -- don't rename or change syntax.

asciidoc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sys, os, re, time, traceback, tempfile, subprocess, codecs, locale, unicodedata, copy
1010

1111
### Used by asciidocapi.py ###
12-
VERSION = '8.6.9' # See CHANGLOG file for version history.
12+
VERSION = '8.6.10' # See CHANGLOG file for version history.
1313

1414
MIN_PYTHON_VERSION = '2.4' # Require this version of Python or better.
1515

common.aap

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Executed by all main.aap's before anything else.
33
#
44

5-
_parent.VERS = 8.6.9
6-
_parent.DATE = 9 November 2013
5+
_parent.VERS = 8.6.10
6+
_parent.DATE = 22 September 2017
77

88
all:
99
:pass

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT(asciidoc, 8.6.9)
1+
AC_INIT(asciidoc, 8.6.10)
22

33
AC_CONFIG_FILES(Makefile)
44

examples/website/build-website.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

3-
VERS="8.6.9"
4-
DATE="2013-11-09"
3+
VERS="8.6.10"
4+
DATE="2017-09-22"
55

66
# Leave the desired layout uncommented.
77
#LAYOUT=layout1 # Tables based layout.

0 commit comments

Comments
 (0)