summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-02-09 18:25:06 -0500
committerChris McDonough <chrism@plope.com>2011-02-09 18:25:06 -0500
commitfcbd7bfe4e777d39cb56a851fc3bbf61e97d536e (patch)
tree8d87adacc2dff4a54d2a54aff7711b0f273c4fcb /CHANGES.txt
parentb371775f0c9ae7576042d9c5637fa6c028d62035 (diff)
downloadpyramid-fcbd7bfe4e777d39cb56a851fc3bbf61e97d536e.tar.gz
pyramid-fcbd7bfe4e777d39cb56a851fc3bbf61e97d536e.tar.bz2
pyramid-fcbd7bfe4e777d39cb56a851fc3bbf61e97d536e.zip
- Integers and longs passed as ``elements`` to ``pyramid.url.resource_url``
or ``pyramid.request.Request.resource_url`` e.g. ``resource_url(context, request, 1, 2)`` (``1`` and ``2`` are the ``elements``) will now be converted implicitly to strings in the result. Previously passing integers or longs as elements would cause a TypeError. Closes #124
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 34e8cd7b6..8ee0b0bd0 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -14,6 +14,15 @@ Bug Fixes
given as examples now work. See also
https://github.com/Pylons/pyramid/issues/#issue/123.
+Features
+--------
+
+- Integers and longs passed as ``elements`` to ``pyramid.url.resource_url``
+ or ``pyramid.request.Request.resource_url`` e.g. ``resource_url(context,
+ request, 1, 2)`` (``1`` and ``2`` are the ``elements``) will now be
+ converted implicitly to strings in the result. Previously passing integers
+ or longs as elements would cause a TypeError.
+
1.0 (2011-01-30)
================