summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2017-03-31 01:49:42 -0500
committerMichael Merickel <michael@merickel.org>2017-03-31 21:23:05 -0500
commitf454b80b0f6e6442fa27e48b7e1e38c5a7cbef03 (patch)
tree871afcd2183553c2d7f9fb742e9f1772890026bc /CHANGES.txt
parentfa8a9dcb11a7e2ec81fa041fd0292d7ce8e2138a (diff)
downloadpyramid-f454b80b0f6e6442fa27e48b7e1e38c5a7cbef03.tar.gz
pyramid-f454b80b0f6e6442fa27e48b7e1e38c5a7cbef03.tar.bz2
pyramid-f454b80b0f6e6442fa27e48b7e1e38c5a7cbef03.zip
add some simple notes about plaster in the narrative docs
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index c617adf95..59196626d 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -7,7 +7,7 @@ Major Features
- The file format used by all ``p*`` command line scripts such as ``pserve``
and ``pshell``, as well as the ``pyramid.paster.bootstrap`` function
is now replaceable thanks to a new dependency on
- `plaster <http://docs.pylonsproject.org/projects/plaster/en/latest/>`.
+ `plaster <http://docs.pylonsproject.org/projects/plaster/en/latest/>`_.
For now, Pyramid is still shipping with integrated support for the
PasteDeploy INI format by depending on the ``plaster_pastedeploy`` binding.
@@ -16,12 +16,12 @@ Major Features
- Added an execution policy hook to the request pipeline. An execution
policy has the ability to control creation and execution of the request
- objects before they enter rest of the pipeline. This means for a single
+ objects before they enter the rest of the pipeline. This means for a single
request environ the policy may create more than one request object.
The first library to use this feature is
`pyramid_retry
- <http://docs.pylonsproject.org/projects/pyramid-retry/en/latest/>`.
+ <http://docs.pylonsproject.org/projects/pyramid-retry/en/latest/>`_.
See https://github.com/Pylons/pyramid/pull/2964