Skip to content

Commit

Permalink
docs: link to docs from change log
Browse files Browse the repository at this point in the history
  • Loading branch information
jg-rp committed Aug 6, 2022
1 parent 83e8008 commit ff6809a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ Version 1.4.0
**Features**

- ``StrictDefaultUndefined``, an undefined type that plays nicely with the ``default``
filter, is now built in.
filter, is now built in. (`docs <https://jg-rp.github.io/liquid/guides/undefined-variables#the-default-filter>`_)
- Configure resource limits with class attributes set on a Liquid ``Environment``. Those
class attributes are ``context_depth_limit``, ``loop_iteration_limit``,
``local_namespace_limit`` and ``output_stream_limit``.
(`docs <https://jg-rp.github.io/liquid/guides/resource-limits>`_)

**Fixes**

Expand All @@ -27,7 +28,7 @@ Version 1.3.0
- Contextual template analysis with ``BoundTemplate.analyze_with_context()``.
Complementing static template analysis, released in version 1.2.0, contextual template
analysis performs a template `render`, capturing information about template variable
usage as it goes.
usage as it goes. (`docs <https://jg-rp.github.io/liquid/guides/contextual-template-analysis>`_)


Version 1.2.1
Expand All @@ -45,6 +46,7 @@ Version 1.2.0
traverse a template's abstract syntax tree and report template variable usage. Static
tree traversal (without rendering or evaluating expressions) is supported by the new,
optional ``children()`` methods of ``liquid.expression.Expression`` and ``liquid.ast.Node``.
(`docs <https://jg-rp.github.io/liquid/guides/static-template-analysis>`_)

**Fixes**

Expand Down
2 changes: 1 addition & 1 deletion liquid/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class OutputStreamLimitError(ResourceLimitError):


class LocalNamespaceLimitError(ResourceLimitError):
"""Exceptions raised when the maximum size of a render context's local namespace
"""Exception raised when the maximum size of a render context's local namespace
has been exceeded."""


Expand Down

0 comments on commit ff6809a

Please sign in to comment.