diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7283b8f..945fbaf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.24.1" + ".": "0.25.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d362c0c..cdf1fa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## [0.25.0](https://github.com/elixir-tools/tableau/compare/v0.24.1...v0.25.0) (2025-06-21) + + +### ⚠ BREAKING CHANGES + +* **extensions:** Extensions no longer implement a `run/1` callback. They can implement a callback named after the build phase: `pre_build/1`, `pre_render/1`, etc + +### Features + +* **extensions:** pre_render phase ([#138](https://github.com/elixir-tools/tableau/issues/138)) ([a8a819e](https://github.com/elixir-tools/tableau/commit/a8a819e01d431afdb861641a636c61d80e8f18d4)) + ## [0.24.1](https://github.com/elixir-tools/tableau/compare/v0.24.0...v0.24.1) (2025-06-02) diff --git a/mix.exs b/mix.exs index f8ab3d1..deb126d 100644 --- a/mix.exs +++ b/mix.exs @@ -8,7 +8,7 @@ defmodule Tableau.MixProject do app: :tableau, description: "Static site generator for elixir", source_url: @source_url, - version: "0.24.1", + version: "0.25.0", elixir: "~> 1.15", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,