Skip to content

Commit a740878

Browse files
committed
Release 0.1.0
1 parent 727ca1d commit a740878

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22

33
## [v0.1.0](https://github.com/cabol/ex_shards/tree/v0.1.0) (2017-02-11)
4+
**Implemented enhancements:**
5+
6+
- Add some documentation to the modules [\#3](https://github.com/cabol/ex_shards/issues/3)
7+
48
**Closed issues:**
59

610
- Implement analogous modules to `shards\_local` and `shards\_dist` [\#2](https://github.com/cabol/ex_shards/issues/2)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To start playing with `ex_shards` you just have to follow these simple steps:
1818

1919
```elixir
2020
def deps do
21-
[{:shards, "~> 0.4.0"}]
21+
[{:ex_shards, "~> 0.1.0"}]
2222
end
2323
```
2424

mix.exs

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ defmodule ExShards.Mixfile do
88
build_embedded: Mix.env == :prod,
99
start_permanent: Mix.env == :prod,
1010
deps: deps(),
11+
package: package(),
1112
description: "ExShards – Elixir Wrapper for cabol/shards"]
1213
end
1314

@@ -19,4 +20,11 @@ defmodule ExShards.Mixfile do
1920
[{:shards, "~> 0.4.0"},
2021
{:ex_doc, ">= 0.0.0", only: :dev}]
2122
end
23+
24+
defp package do
25+
[name: :ex_shards,
26+
maintainers: ["Carlos A Bolanos"],
27+
licenses: ["MIT"],
28+
links: %{"GitHub" => "https://github.com/cabol/ex_shards"}]
29+
end
2230
end

0 commit comments

Comments
 (0)