Skip to content

Commit

Permalink
upgrade to Elixir v1.0.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
sasa1977 committed Sep 2, 2014
1 parent 02bfaf5 commit ee43b3e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ end

Usage:

Be sure to include a dependency in your mix.exs:

```elixir
deps: [{:fsm, "~> 0.1.0"}, ...]
```

```elixir
# basic usage
BasicFsm.new
Expand Down
8 changes: 4 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ defmodule Fsm.Mixfile do
def project do
[
app: :fsm,
version: "0.0.2",
elixir: ">= 0.13.0",
version: "0.1.0",
elixir: ">= 1.0.0-rc1",
deps: deps,
package: [
contributors: ["Saša Jurić"],
licenses: ["MIT"],
links: [{"Github", "https://github.com/sasa1977/fsm"}]
links: %{"Github": "https://github.com/sasa1977/fsm"}
],
description: "Finite state machine as a functional data structure."
]
end

def application do
[]
[applications: [:logger]]
end

defp deps do
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[ ]
%{}

0 comments on commit ee43b3e

Please sign in to comment.