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

Commit

Permalink
Merge pull request #115 from bmwiedemann/release
Browse files Browse the repository at this point in the history
Prepare 8.6.10 release
  • Loading branch information
elextr committed Sep 29, 2017
2 parents 441fa3b + 80055fb commit 37f6baa
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.txt
Expand Up @@ -4,6 +4,15 @@ AsciiDoc ChangeLog
:website: http://asciidoc.org/


Version 8.6.10 (2017-09-22)
---------------------------
.Additions and changes
- Improve reproducibility of builds (e.g. support SOURCE_DATE_EPOCH)
- Add SVG output support
- Improve documentation
- Update translations
- Full list of changes is at https://github.com/asciidoc/asciidoc/compare/asciidoc:8.6.9...asciidoc:8.6.10
Version 8.6.9 (2013-11-09)
--------------------------
.Additions and changes
Expand Down
2 changes: 1 addition & 1 deletion a2x.py
Expand Up @@ -24,7 +24,7 @@
import codecs

PROG = os.path.basename(os.path.splitext(__file__)[0])
VERSION = '8.6.9'
VERSION = '8.6.10'

# AsciiDoc global configuration file directory.
# NOTE: CONF_DIR is "fixed up" by Makefile -- don't rename or change syntax.
Expand Down
2 changes: 1 addition & 1 deletion asciidoc.py
Expand Up @@ -9,7 +9,7 @@
import sys, os, re, time, traceback, tempfile, subprocess, codecs, locale, unicodedata, copy

### Used by asciidocapi.py ###
VERSION = '8.6.9' # See CHANGLOG file for version history.
VERSION = '8.6.10' # See CHANGLOG file for version history.

MIN_PYTHON_VERSION = '2.6' # Require this version of Python or better.

Expand Down
4 changes: 2 additions & 2 deletions common.aap
Expand Up @@ -2,8 +2,8 @@
# Executed by all main.aap's before anything else.
#

_parent.VERS = 8.6.9
_parent.DATE = 9 November 2013
_parent.VERS = 8.6.10
_parent.DATE = 22 September 2017

all:
:pass
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,4 +1,4 @@
AC_INIT(asciidoc, 8.6.9)
AC_INIT(asciidoc, 8.6.10)

AC_CONFIG_FILES(Makefile)

Expand Down
4 changes: 2 additions & 2 deletions examples/website/build-website.sh
@@ -1,7 +1,7 @@
#!/bin/sh

VERS="8.6.9"
DATE="2013-11-09"
VERS="8.6.10"
DATE="2017-09-22"

# Leave the desired layout uncommented.
#LAYOUT=layout1 # Tables based layout.
Expand Down

0 comments on commit 37f6baa

Please sign in to comment.