Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
angelikatyborska committed Feb 27, 2024
1 parent ba22088 commit 9224614
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.2.0 (2024-02-27)

- Support parsing multiline doctests with `iex>` on all lines, but reformat them using `...>` on every line but the first one.
- Fix implementation for multiline results. Multiline results are allowed, and they can be terminated with an empty new line or another doctest.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0", runtime: false}
{:doctest_formatter, "~> 0.2.0", runtime: false}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule DoctestFormatter.MixProject do
def project do
[
app: :doctest_formatter,
version: "0.1.0",
version: "0.2.0",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "Doctest Formatter",
Expand Down

0 comments on commit 9224614

Please sign in to comment.