summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Rackham <srackham@methods.co.nz>2013-11-06 13:36:29 +1300
committerStuart Rackham <srackham@methods.co.nz>2013-11-06 13:36:29 +1300
commitbe87c49221cbeca04028016eadf9c9a8400f4358 (patch)
treee2aac01dbcd376e54ab2f85060a8b075afc6ea46
parent3d2ce9fd92ae1a94bfd45e1dded84a5a5439432f (diff)
downloadasciidoc-be87c49221cbeca04028016eadf9c9a8400f4358.tar.gz
Bumped version number.
-rw-r--r--CHANGELOG.txt5
-rwxr-xr-xa2x.py2
-rwxr-xr-xasciidoc.py2
-rw-r--r--common.aap4
-rw-r--r--configure.ac2
5 files changed, 9 insertions, 6 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 5180402..bfd7a13 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -4,9 +4,12 @@ AsciiDoc ChangeLog
:website: http://asciidoc.org/
-Version 8.6.9 (2013-01-??)
+Version 8.6.9 (2013-11-09)
--------------------------
.Additions and changes
+- 'html5', 'xhtml11' and 'slidy' outputs now wrap 'pre' element
+ contents at right margin (see
+https://groups.google.com/group/asciidoc/browse_thread/thread/9877a316b7a47309).
- Vim syntax file: highlight line breaks in lists (patch submitted by
Alex Efros). See
https://groups.google.com/group/asciidoc/browse_thread/thread/5145e4c0b65cde0a).
diff --git a/a2x.py b/a2x.py
index 736eb80..c30e15b 100755
--- a/a2x.py
+++ b/a2x.py
@@ -23,7 +23,7 @@ import xml.dom.minidom
import mimetypes
PROG = os.path.basename(os.path.splitext(__file__)[0])
-VERSION = '8.6.8'
+VERSION = '8.6.9'
# AsciiDoc global configuration file directory.
# NOTE: CONF_DIR is "fixed up" by Makefile -- don't rename or change syntax.
diff --git a/asciidoc.py b/asciidoc.py
index 6128173..d1a8929 100755
--- a/asciidoc.py
+++ b/asciidoc.py
@@ -9,7 +9,7 @@ under the terms of the GNU General Public License (GPL).
import sys, os, re, time, traceback, tempfile, subprocess, codecs, locale, unicodedata, copy
### Used by asciidocapi.py ###
-VERSION = '8.6.8' # See CHANGLOG file for version history.
+VERSION = '8.6.9' # See CHANGLOG file for version history.
MIN_PYTHON_VERSION = '2.4' # Require this version of Python or better.
diff --git a/common.aap b/common.aap
index 233d190..c35a6b3 100644
--- a/common.aap
+++ b/common.aap
@@ -2,8 +2,8 @@
# Executed by all main.aap's before anything else.
#
-_parent.VERS = 8.6.8
-_parent.DATE = 17 July 2012
+_parent.VERS = 8.6.9
+_parent.DATE = 9 November 2013
all:
:pass
diff --git a/configure.ac b/configure.ac
index 3061ff6..1e45d10 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(asciidoc, 8.6.8)
+AC_INIT(asciidoc, 8.6.9)
AC_CONFIG_FILES(Makefile)