diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2be9c43..0ee8c01 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.0" + ".": "0.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ce53634..52bb22c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.0](https://github.com/elixir-tools/web_dev_utils/compare/v0.2.0...v0.3.0) (2025-03-04) + + +### Features + +* return compiler diagnostics from reload ([#6](https://github.com/elixir-tools/web_dev_utils/issues/6)) ([d553a40](https://github.com/elixir-tools/web_dev_utils/commit/d553a403f4019929d4947d4f93eec61a6f96211d)) + ## [0.2.0](https://github.com/elixir-tools/web_dev_utils/compare/v0.1.1...v0.2.0) (2024-10-11) diff --git a/README.md b/README.md index b415572..67177e6 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ by adding `web_dev_utils` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:web_dev_utils, "~> 0.2.0"} + {:web_dev_utils, "~> 0.3.0"} ] end ``` diff --git a/mix.exs b/mix.exs index cbfd54e..97916bc 100644 --- a/mix.exs +++ b/mix.exs @@ -8,7 +8,7 @@ defmodule WebDevUtils.MixProject do app: :web_dev_utils, description: "Library to enable awesome local development for websites and web applications", - version: "0.2.0", + version: "0.3.0", elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,