File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ iex> IO.inspect result
3030
3131 ``` elixir
3232 def deps do
33- [{:aws , " ~> 0.3 .0" }]
33+ [{:aws , " ~> 0.4 .0" }]
3434 end
3535 ```
3636
37- * Configure the OTP application to start ` aws-elixir `
37+ * Configure the OTP application to start ` aws-elixir `
3838
3939 _ Note: If you are using elixir 1.4, you can skip this step_
4040
Original file line number Diff line number Diff line change 11defmodule AWS.Mixfile do
22 use Mix.Project
33
4+ @ version "0.4.0"
5+
46 def project do
57 [ app: :aws ,
68 description: "AWS clients for Elixir" ,
79 package: package ( ) ,
8- version: version ( ) ,
10+ version: @ version ,
911 name: "aws-elixir" ,
1012 source_url: "https://github.com/jkakar/aws-elixir" ,
1113 homepage_url: "http://github.com/jkakar/aws-elixir" ,
@@ -40,15 +42,11 @@ defmodule AWS.Mixfile do
4042 { :timex , "~> 3.1" } ]
4143 end
4244
43- defp version do
44- "0.3.0"
45- end
46-
4745 defp package do
4846 [ maintainers: [ "Jamu Kakar" ] ,
4947 licenses: [ "Apache 2.0" ] ,
5048 links: % { "GitHub" => "https://github.com/jkakar/aws-elixir" ,
51- "Docs" => "http://hexdocs.pm/aws/#{ version ( ) } /" ,
49+ "Docs" => "http://hexdocs.pm/aws/#{ @ version } /" ,
5250 "Changelog" => "https://github.com/jkakar/aws-elixir/blob/master/CHANGELOG.md" } ]
5351 end
5452end
You can’t perform that action at this time.
0 commit comments