Skip to content

Commit

Permalink
Add compatibility note in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrene committed May 2, 2024
1 parent 90b83e8 commit e8ed028
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion guides/introduction/installation.md
Expand Up @@ -7,7 +7,7 @@ Add `:credo` as a dependency to your project's `mix.exs`:
```elixir
defp deps do
[
{:credo, "~> 1.6", only: [:dev, :test], runtime: false}
{:credo, "~> 1.7", only: [:dev, :test], runtime: false}
]
end
```
Expand All @@ -17,3 +17,11 @@ And run:
```bash
$ mix deps.get
```

## Compatibility

Credo aims to stay compatible with the list of [Elixir minor releases mentioned in the Elixir docs](https://hexdocs.pm/elixir/compatibility-and-deprecations.html).

These are the releases that are actively tested on CI.

Please note that Credo sometimes stays technically compatible with even earlier versions coincidentally.

0 comments on commit e8ed028

Please sign in to comment.