-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version bump bumping version updating included files Update VERSION file on release, commit Add contributor, small change Move edoc dir to edoc to not conflict with hex doc/ dir Use a more strict version regex 2.5.3 release notes
- Loading branch information
drewkerrigan
authored and
Luke Bakken
committed
Mar 3, 2017
1 parent
b00454f
commit 03668ae
Showing
12 changed files
with
83 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.5.2 |
Submodule edoc
updated
from 000000 to 54d8d5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
defmodule Riakc.Mixfile do | ||
use Mix.Project | ||
|
||
@version File.read!("VERSION") |> String.strip | ||
|
||
def project do | ||
[app: :riakc, | ||
version: @version, | ||
description: "The Riak client for Erlang", | ||
package: package(), | ||
deps: deps()] | ||
end | ||
|
||
defp deps do | ||
[ | ||
{:riak_pb, "~> 2.3"}, | ||
{:ex_doc, ">= 0.0.0", only: :dev} | ||
] | ||
end | ||
|
||
defp package do | ||
[files: ~w(include src mix.exs LICENSE Makefile README.md RELNOTES.md rebar.config rebar.config.script tools.mk tools test priv VERSION), | ||
maintainers: ["Drew Kerrigan", "Luke Bakken", "Alex Moore"], | ||
licenses: ["Apache 2.0"], | ||
links: %{"GitHub" => "https://github.com/basho/riak-erlang-client"}] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters