Skip to content

Commit

Permalink
bump mix version
Browse files Browse the repository at this point in the history
  • Loading branch information
benwilson512 committed Aug 15, 2015
1 parent d01144b commit 7fd7555
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions lib/ex_aws/dynamo/client.ex
Expand Up @@ -185,8 +185,15 @@ defmodule ExAws.Dynamo.Client do
index_name: "my-global-index",
key_schema: [%{
attribute_name: "email",
attribute_type: "string",
}]
attribute_type: "HASH",
}],
provisioned_throughput: %{
read_capacity_units: 1,
write_capacity_units: 1,
},
projection: %{
projection_type: "KEYS_ONLY",
}
}]
create_table("TestUsers", [id: :hash], %{id: :string}, 1, 1, secondary_index, [])
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -3,7 +3,7 @@ defmodule ExAws.Mixfile do

def project do
[app: :ex_aws,
version: "0.4.5",
version: "0.4.6",
elixir: "~> 1.0",
description: "AWS client. Currently supports Dynamo, Kinesis, Lambda, S3",
name: "ExAws",
Expand Down

0 comments on commit 7fd7555

Please sign in to comment.