summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-01-19 11:16:38 +0100
committerGeorg Brandl <georg@python.org>2014-01-19 11:16:38 +0100
commit647512528f59c24781ed4043bab0d811e97ef3a7 (patch)
tree6ff037d6e5ce157074d3fcda541b7cfa5abdfa1c /CHANGES
parentb06dd5080fc5abd71dc3a427a2bc482cfd7a5733 (diff)
parent6a5de08f929ef4dc58f68122dea364af4ed212e5 (diff)
downloadsphinx-647512528f59c24781ed4043bab0d811e97ef3a7.tar.gz
merge with stable
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES39
1 files changed, 37 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 36b38e03..e2077d45 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,9 +1,44 @@
-Release 1.2.1 (in development)
-==============================
+Release 1.3 (in development)
+============================
+
+Incompatible changes
+--------------------
+
+* Dropped support for Python 2.5 and 3.1.
+
+* Removed the ``sphinx.ext.oldcmarkup`` extension.
+
+* A new node, ``sphinx.addnodes.literal_strong``, has been added, for text that
+ should appear literally (i.e. no smart quotes) in strong font. Custom writers
+ will have to be adapted to handle this node.
+
+New features
+------------
+
+* PR#202: Allow "." and "~" prefixed references in ``:param:`` doc fields
+ for Python.
+
+* PR#184: Add :confval:`autodoc_mock_imports`, allowing to mock imports of
+ external modules that need not be present when autodocumenting.
+
+* #925: Allow list-typed config values to be provided on the command line,
+ like ``-D key=val1,val2``.
+
+* #668: Allow line numbering of ``code-block`` and ``literalinclude`` directives
+ to start at an arbitrary line number, with a new ``lineno-start`` option.
+
+* PR#172: The :rst:dir:`code-block` and :rst:dir:`literalinclude` directives now
+ can have a ``filename`` option that shows a filename before the code in the
+ output.
+
+* Prompt for the document language in sphinx-quickstart.
Bugs fixed
----------
+* #1174: Fix smart quotes being applied inside roles like :rst:role:`program` or
+ :rst:role:`makevar`.
+
* #1335: Fix autosummary template overloading with exclamation prefix like
``{% extends "!autosummary/class.rst" %}`` cause infinite recursive function
call. This caused by PR#181.