**Features**
- Added `{% extends %}` and `{% block %}` tags for template inheritance. These are extra tags that need to be registered with a `liquid.Environment` explicitly. ([docs](https://jg-rp.github.io/liquid/extra/tags#extends--block), [source](https://github.com/jg-rp/liquid/blob/main/liquid/extra/tags/extends.py))
- Added a new `sort_numeric` filter. `sort_numeric` returns a new list with items from the input sequence sorted by any integers and/or floats found in the string representation of each item. ([docs](https://jg-rp.github.io/liquid/extra/filters#sort_numeric), [source](https://github.com/jg-rp/liquid/blob/main/liquid/extra/filters/array.py#L35))
**Fixes**
- Fixed a bug with the `cycle` tag when using `liquid.future.Environment`. We were misinterpreting unquoted cycle group names as strings rather than variables to be resolved, and not Liquid stringifying some cycled items before output. We've also rolled back changes to `CycleNode.children()` from version 1.7.0.
- Fixed a regression bug that lead to some erroneous filtered expressions tokens to be silently ignored. Specifically any tokens that appear after a valid left value and the first filter or end of expression. We now raise a `LiquidSyntaxError` in such cases. See [103](https://github.com/jg-rp/liquid/issues/103).
- Fixed parenthesized conditional expression syntax error reporting. We now raise a `LiquidSyntaxError` when given unbalanced parentheses. See [101](https://github.com/jg-rp/liquid/issues/101).
**Compatibility**
- The `{% for %}` tag now accepts a string literal as its iterable. Unlike Shopify/liquid, whether a string literal or a variable resolving to a string, the default `Environment` will iterate over characters in the string. `liquid.future.Environment` is now consistent with Shopify/liquid, in that it iterates over an "array" where the first an only item is the string. See [102](https://github.com/jg-rp/liquid/issues/102).
- The `round` filter is now consistent with Shopify/liquid and Ruby 3 when given non-integer arguments. See [Shopify/liquid1590](https://github.com/Shopify/liquid/issues/1590).