Skip to content

Commit

Permalink
2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sasa1977 committed Dec 9, 2014
1 parent 076e5b2 commit a5d9261
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v2.0.1
- Fixed the docs link in `mix.exs`

# v2.0.0

## New features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The stable package is available on [hex](https://hex.pm/packages/exactor).
Be sure to include a dependency in your `mix.exs`:

```elixir
deps: [{:exactor, "~> 2.0.0"}, ...]
deps: [{:exactor, "~> 2.0.1"}, ...]
```

`ExActor` is a compile-time dependency only. No need to add it into the list of dependent applications. All code transformations are performed at compile time.
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule ExActor.Mixfile do
use Mix.Project

@version "2.0.0"
@version "2.0.1"

def project do
[
Expand All @@ -15,7 +15,7 @@ defmodule ExActor.Mixfile do
licenses: ["MIT"],
links: %{
"Github" => "https://github.com/sasa1977/exactor",
"Docs" => "http://sasa1977.github.io/exactor/"
"Docs" => "http://hexdocs.pm/exactor"
}
],
description: "Simplified creation of GenServer based processes in Elixir.",
Expand Down

0 comments on commit a5d9261

Please sign in to comment.