Skip to content

Commit 83fc22d

Browse files
committed
Bump version to 0.4.0.
1 parent 8503ccc commit 83fc22d

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

mix.exs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
defmodule 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
5452
end

0 commit comments

Comments
 (0)