Skip to content

Commit

Permalink
0.19.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
akoutmos committed Jul 19, 2022
1 parent 1febabc commit cdb77c6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.19.0] - 2022-7-19

### Fixed

- `mix doctor.explain` now works in umbrella projects
- Properly measure documentation coverage in nested modules
- Properly measure documentation with `__using__`
- Fix `@moduledoc` detection for older elixir versions

## [0.18.0] - 2021-5-27

- @doc false assumes no explicit spec and does not count against results
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Adding `:doctor` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:doctor, "~> 0.18.0", only: :dev}
{:doctor, "~> 0.19.0", only: :dev}
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ defmodule Doctor.MixProject do
def project do
[
app: :doctor,
version: "0.18.0",
elixir: "~> 1.8",
version: "0.19.0",
elixir: "~> 1.10",
name: "Doctor",
source_url: @source_url,
homepage_url: "https://hex.pm/packages/doctor",
Expand Down

0 comments on commit cdb77c6

Please sign in to comment.