Skip to content

Commit

Permalink
Version 1.5.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
okeuday committed Dec 23, 2015
1 parent 24325ae commit b2a42be
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions mix.exs
Expand Up @@ -3,15 +3,15 @@ defmodule Uuid.Mixfile do

def project do
[app: :uuid,
version: "1.5.0",
version: "1.5.1",
language: :erlang,
description: description,
package: package,
deps: deps]
end

defp deps do
[{:quickrand, "~> 1.5.0"}]
[{:quickrand, "~> 1.5.1"}]
end

defp description do
Expand All @@ -21,7 +21,7 @@ defmodule Uuid.Mixfile do
defp package do
[name: :uuid_erl,
files: ~w(src include doc rebar.config README.markdown),
contributors: ["Michael Truog"],
maintainers: ["Michael Truog"],
licenses: ["BSD"],
links: %{"GitHub" => "https://github.com/okeuday/uuid"}]
end
Expand Down
3 changes: 1 addition & 2 deletions rebar.config
@@ -1,7 +1,6 @@
%-*-Mode:erlang;coding:utf-8;tab-width:4;c-basic-offset:4;indent-tabs-mode:()-*-
% ex: set ft=erlang fenc=utf-8 sts=4 ts=4 sw=4 et nomod:

{lib_dirs, ["deps"]}.
{require_otp_vsn, "R16|17|18"}.
{erl_opts,
[{platform_define, "^R16", 'ERLANG_OTP_VERSION_16'},
Expand All @@ -27,4 +26,4 @@
{deps,
[{quickrand, ".*",
{git, "https://github.com/okeuday/quickrand.git",
{branch, "master"}}}]}.
{tag, "v1.5.1"}}}]}.
4 changes: 2 additions & 2 deletions src/uuid.app.src
Expand Up @@ -3,8 +3,8 @@

{application, uuid,
[{description, "Native UUID Generation"},
{vsn, "1.5.0"},
{vsn, "1.5.1"},
{modules, [uuid]},
{registered, []},
{applications, [kernel, quickrand, stdlib]}]}.
{applications, [quickrand, stdlib, kernel]}]}.

0 comments on commit b2a42be

Please sign in to comment.