Skip to content

Commit

Permalink
Merge pull request #25 from jrusso1020/jrusso/fix-24
Browse files Browse the repository at this point in the history
Jrusso/fix 24
  • Loading branch information
jrusso1020 committed Jun 11, 2023
2 parents 8427293 + 502ae76 commit 9407de9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ by adding `alpaca_elixir` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:alpaca_elixir, "~> 2.0.0"}
{:alpaca_elixir, "~> 2.1.0"}
]
end
```
Expand Down
6 changes: 3 additions & 3 deletions lib/alpaca/stream.ex
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ defmodule Alpaca.Stream do
defp authentication_frame do
authentication_json =
%{
action: "authenticate",
action: "auth",
data: %{
key_id: Client.client_id(),
secret_key: Client.client_secret()
key: Client.client_id(),
secret: Client.client_secret()
}
}
|> Jason.encode!()
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule AlpacaElixir.MixProject do
def project do
[
app: :alpaca_elixir,
version: "2.0.0",
version: "2.1.0",
elixir: "~> 1.10",
preferred_cli_env: ["coveralls.html": :test],
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit 9407de9

Please sign in to comment.