Skip to content

Commit dda656f

Browse files
committed
Bump version to 0.3.0.
1 parent 99a4621 commit dda656f

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased][unreleased]
66

7+
## [v0.3.0] - 2016-12-11
8+
### Changed
9+
- Bumped `httpoison` dependency from `~0.9.1` to `~0.10.0`.
10+
711
## [v0.2.0] - 2016-08-20
812
### Changed
913
- Bumped `httpoison` dependency from `~0.8.0` to `~0.9.1` to be compatible
@@ -250,7 +254,8 @@ All notable changes to this project will be documented in this file.
250254
- `AWS.StorageGateway` module for Storage Gateway Service
251255
- `AWS.Support` module for Support Service.
252256

253-
[unreleased]: https://github.com/jkakar/aws-elixir/compare/v0.2.0...HEAD
257+
[unreleased]: https://github.com/jkakar/aws-elixir/compare/v0.3.0...HEAD
258+
[v0.3.0]: https://github.com/jkakar/aws-elixir/compare/v0.2.0...v0.3.0
254259
[v0.2.0]: https://github.com/jkakar/aws-elixir/compare/v0.1.0...v0.2.0
255260
[v0.1.0]: https://github.com/jkakar/aws-elixir/compare/v0.0.12...v0.1.0
256261
[v0.0.12]: https://github.com/jkakar/aws-elixir/compare/v0.0.11...v0.0.12

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ iex> IO.inspect result
3030

3131
```elixir
3232
def deps do
33-
[{:aws, "~> 0.2.0"}]
33+
[{:aws, "~> 0.3.0"}]
3434
end
3535
```
36-
36+
3737
* Configure the OTP application to start `aws-elixir`
3838

3939
```elixir
4040
def application do
4141
[applications: [:logger, :aws]]
42-
end
42+
end
4343
```
4444

4545
* Run `mix deps.get` to install.

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ defmodule AWS.Mixfile do
4141
end
4242

4343
defp version do
44-
"0.2.0"
44+
"0.3.0"
4545
end
4646

4747
defp package do

0 commit comments

Comments
 (0)