File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
3
## [ 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
+
4
8
** Closed issues:**
5
9
6
10
- Implement analogous modules to ` shards\_local ` and ` shards\_dist ` [ \# 2] ( https://github.com/cabol/ex_shards/issues/2 )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ To start playing with `ex_shards` you just have to follow these simple steps:
18
18
19
19
``` elixir
20
20
def deps do
21
- [{:shards , " ~> 0.4 .0" }]
21
+ [{:ex_shards , " ~> 0.1 .0" }]
22
22
end
23
23
```
24
24
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ defmodule ExShards.Mixfile do
8
8
build_embedded: Mix . env == :prod ,
9
9
start_permanent: Mix . env == :prod ,
10
10
deps: deps ( ) ,
11
+ package: package ( ) ,
11
12
description: "ExShards – Elixir Wrapper for cabol/shards" ]
12
13
end
13
14
@@ -19,4 +20,11 @@ defmodule ExShards.Mixfile do
19
20
[ { :shards , "~> 0.4.0" } ,
20
21
{ :ex_doc , ">= 0.0.0" , only: :dev } ]
21
22
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
22
30
end
You can’t perform that action at this time.
0 commit comments