Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cabol committed Feb 11, 2017
1 parent 727ca1d commit a740878
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log

## [v0.1.0](https://github.com/cabol/ex_shards/tree/v0.1.0) (2017-02-11)
**Implemented enhancements:**

- Add some documentation to the modules [\#3](https://github.com/cabol/ex_shards/issues/3)

**Closed issues:**

- Implement analogous modules to `shards\_local` and `shards\_dist` [\#2](https://github.com/cabol/ex_shards/issues/2)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To start playing with `ex_shards` you just have to follow these simple steps:

```elixir
def deps do
[{:shards, "~> 0.4.0"}]
[{:ex_shards, "~> 0.1.0"}]
end
```

Expand Down
8 changes: 8 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ defmodule ExShards.Mixfile do
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package(),
description: "ExShards – Elixir Wrapper for cabol/shards"]
end

Expand All @@ -19,4 +20,11 @@ defmodule ExShards.Mixfile do
[{:shards, "~> 0.4.0"},
{:ex_doc, ">= 0.0.0", only: :dev}]
end

defp package do
[name: :ex_shards,
maintainers: ["Carlos A Bolanos"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/cabol/ex_shards"}]
end
end

0 comments on commit a740878

Please sign in to comment.