diff --git a/CHANGELOG.md b/CHANGELOG.md index 0162e7c..17aee62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.2.1 (2024-03-22) - Do not crash if doctest has no expected result. diff --git a/README.md b/README.md index 4cb4574..1e6192d 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The package can be installed by adding `doctest_formatter` to your list of depen ```elixir def deps do [ - {:doctest_formatter, "~> 0.2.0", runtime: false} + {:doctest_formatter, "~> 0.2.1", runtime: false} ] end ``` diff --git a/mix.exs b/mix.exs index 305ea8a..56754f4 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule DoctestFormatter.MixProject do def project do [ app: :doctest_formatter, - version: "0.2.0", + version: "0.2.1", start_permanent: Mix.env() == :prod, deps: deps(), name: "Doctest Formatter",