Current section

20 Versions

Jump to

Compare versions

3 files changed
+7 additions
-7 deletions
  @@ -9,7 +9,7 @@ In order to install it via hex, add the reference to this package into the `deps
9 9 ```elixir
10 10 defp deps do
11 11 [
12 - {:apex, "~>1.0.0"}
12 + {:apex, "~>1.1.0"}
13 13 ]
14 14 end
15 15 ```
  @@ -143,7 +143,7 @@ Result:
143 143 ### License ###
144 144 (The MIT License)
145 145
146 - Copyright (c) 2014-2016 Björn Rochel
146 + Copyright (c) 2014-2017 Björn Rochel
147 147
148 148 Permission is hereby granted, free of charge, to any person obtaining
149 149 a copy of this software and associated documentation files (the
  @@ -1,7 +1,7 @@
1 1 {<<"app">>,<<"apex">>}.
2 2 {<<"build_tools">>,[<<"mix">>]}.
3 3 {<<"description">>,<<"Elixir clone of Ruby's awesome_print gem">>}.
4 - {<<"elixir">>,<<"~> 1.3 or ~> 1.4">>}.
4 + {<<"elixir">>,<<"~> 1.3 or ~> 1.4 or ~> 1.5">>}.
5 5 {<<"files">>,
6 6 [<<"lib/apex.ex">>,<<"lib/apex/awesome_def.ex">>,<<"lib/apex/format.ex">>,
7 7 <<"lib/apex/format/color.ex">>,<<"lib/apex/format/seq.ex">>,
  @@ -12,4 +12,4 @@
12 12 {<<"maintainers">>,[<<"Bjoern Rochel">>]}.
13 13 {<<"name">>,<<"apex">>}.
14 14 {<<"requirements">>,[]}.
15 - {<<"version">>,<<"1.0.0">>}.
15 + {<<"version">>,<<"1.1.0">>}.
  @@ -3,8 +3,8 @@ defmodule Apex.Mixfile do
3 3
4 4 def project do
5 5 [ app: :apex,
6 - version: "1.0.0",
7 - elixir: "~> 1.3 or ~> 1.4",
6 + version: "1.1.0",
7 + elixir: "~> 1.3 or ~> 1.4 or ~> 1.5",
8 8 build_per_environment: false,
9 9 description: description(),
10 10 package: package(),
  @@ -17,7 +17,7 @@ defmodule Apex.Mixfile do
17 17
18 18 defp deps do
19 19 [
20 - {:ex_doc, ">= 0.0.0", only: :dev}
20 + {:ex_doc, ">= 0.0.0", only: [:dev, :test]}
21 21 ]
22 22 end