Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sviridov committed Feb 24, 2016
1 parent a3951b9 commit 43cb36e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Anaphora [![Build Status](https://travis-ci.org/sviridov/anaphora-elixir.svg)](https://travis-ci.org/sviridov/anaphora-elixir) [![license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/sviridov/anaphora-elixir/blob/master/LICENSE) [![hex.pm](http://img.shields.io/badge/hex.pm-0.1.1-brightgreen.svg)](https://hex.pm/packages/anaphora)
## Anaphora [![Build Status](https://travis-ci.org/sviridov/anaphora-elixir.svg)](https://travis-ci.org/sviridov/anaphora-elixir) [![license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/sviridov/anaphora-elixir/blob/master/LICENSE) [![hex.pm](http://img.shields.io/badge/hex.pm-0.1.2-brightgreen.svg)](https://hex.pm/packages/anaphora)

`Anaphora` is the anaphoric macro collection for [Elixir](https://github.com/elixir-lang/elixir/). An anaphoric macro is one that deliberately captures a variable (typically `it`) from forms supplied to the macro.

Expand All @@ -8,7 +8,7 @@

```elixir
def deps do
[{:anaphora, "~> 0.1.1"}]
[{:anaphora, "~> 0.1.2"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion lib/anaphora.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Anaphora do
@vsn "0.1.1"
@vsn "0.1.2"

@moduledoc """
The anaphoric macro collection for Elixir
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Anaphora.Mixfile do

def project do
[app: :anaphora,
version: "0.1.1",
version: "0.1.2",
deps: deps,
package: package,
description: description]
Expand All @@ -24,7 +24,7 @@ defmodule Anaphora.Mixfile do
end

defp package do
[contributors: ["Alexander Sviridov"],
[maintainers: ["Alexander Sviridov"],
licenses: ["The MIT License"],
links: %{"Github" => "https://github.com/sviridov/anaphora-elixir"}]
end
Expand Down

0 comments on commit 43cb36e

Please sign in to comment.