Skip to content

Commit

Permalink
Prepare publish of 2.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcrn committed Jul 4, 2023
1 parent 6b3da94 commit c3af60e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# binance.ex

Elixir wrapper for interacting with the [Binance API](https://github.com/binance/binance-spot-api-docs).
[![Hex.pm Version](https://img.shields.io/hexpm/v/binance)](https://hex.pm/packages/binance)
[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/binance)
[![Hex.pm Download Total](https://img.shields.io/hexpm/dt/binance)](https://hex.pm/packages/binance)


Unofficial Elixir wrapper for interacting with the [Binance API](https://github.com/binance/binance-spot-api-docs).

**NOTE: v2 is a full rewrite that's now fully auto-generated from the Binance docs. There are breaking changes, and it's not as battle-tested as v1 yet. If you don't need any of the new endpoints, [stick to v1](https://github.com/dvcrn/binance.ex/tree/master).**

Expand All @@ -11,7 +16,7 @@ Elixir wrapper for interacting with the [Binance API](https://github.com/binance
```elixir
def deps do
[
{:binance, "~> 1.0"}
{:binance, "~> 2.0.0-beta.1"}
]
end
```
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 Binance.MixProject do
def project do
[
app: :binance,
version: "1.0.4",
version: "2.0.0-beta.1",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
description: description(),
Expand Down

0 comments on commit c3af60e

Please sign in to comment.