Skip to content

Commit

Permalink
Release 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asummers authored and jeremyjh committed Mar 16, 2020
1 parent c1251b3 commit 12d7c3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
12 changes: 1 addition & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,6 @@ Mix tasks to simplify use of Dialyzer in Elixir projects.

## Changes in 1.0

A release candidate has been published on Hex for 1.0. To use it add to your mix.exs deps:

```elixir
defp deps do
[
{:dialyxir, "~> 1.0.0-rc.7", only: [:dev], runtime: false},
]
end
```

Elixir 1.6 is required, to support the new pretty printing feature. If your
project is not yet on 1.6, continue to specify 0.5 in your mix deps.

Expand All @@ -35,7 +25,7 @@ To add it to a mix project, just add a line like this in your deps function in m
```elixir
defp deps do
[
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
]
end
```
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Dialyxir.Mixfile do
def project do
[
app: :dialyxir,
version: "1.0.0-rc.7",
version: "1.0.0",
elixir: ">= 1.6.0",
elixirc_paths: elixirc_paths(Mix.env()),
description: description(),
Expand Down Expand Up @@ -39,7 +39,7 @@ defmodule Dialyxir.Mixfile do

defp deps do
[
{:erlex, ">= 0.2.5"},
{:erlex, ">= 0.2.6"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
Expand Down

0 comments on commit 12d7c3f

Please sign in to comment.