Skip to content

Latest commit

 

History

History
153 lines (109 loc) · 6.49 KB

RELEASES.md

File metadata and controls

153 lines (109 loc) · 6.49 KB

📝 Release notes

0.8.1

February 23rd, 2024

0.8.0

October 28th, 2023

Features

0.7.1

July 23rd, 2023

Features

Fixes

0.7.0

July 23rd, 2023

Features

  • Redesign the render API This improvement allows us to add more configuration to the rendering process in the future. It also prevents the need for a proliferation of rendering functions. The new public Renderer struct is created using one of the three functions: render, render_from, or render_from_fn. And then the renderer can be consumed using .to_string() or .to_writer(..).

  • Support ?. optional chaining operator

  • Allow values to be fetched lazily This allows you to provide the global context from an outside source during rendering.

  • Replace ValueCow::as_bool with truthiness function This change implements a truthiness function for evaluating conditionals. None, false, 0 integer and 0.0 float, empty string, list, and map as falsy. Everything else is truthy.

    Contributed by @lunabunn

0.6.0

November 20th, 2022

Features

Fixes

0.5.0

November 14th, 2022

Features

Fixes

0.4.0

October 3rd, 2022

Features

Fixes