Skip to content

Commit 3244098

Browse files
authored
chore: Bump version 13.5 (#690)
* fix(package): include types folder * release: cut the 0.13.3 release * release: cut the 0.13.4 release * chore: update readme * release: cut the 0.13.4 release * release: cut the 0.13.5 release
1 parent 140242e commit 3244098

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Import the module and create a new client. Passing api keys is optional only if
2828
you don't plan on doing authenticated calls. You can create an api key
2929
[here](https://www.binance.com/userCenter/createApi.html). If you want to create demo/testnet keys click [here](https://demo.binance.com/)
3030

31+
3132
```js
3233
import Binance from 'binance-api-node'
3334

@@ -91,6 +92,7 @@ client.ws.ticker('BTCUSDT', ticker => console.log(ticker))
9192
```
9293

9394
**Notes:**
95+
- `binance-api-node` fully supports the new algo service introduced on the Decemeber 9th of 2025
9496
- Proxy support is only available in Node.js environment
9597
- Browsers use system/OS proxy settings automatically
9698
- Supports HTTP and HTTPS proxies (use `http://` or `https://` protocol)

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "binance-api-node",
3-
"version": "0.13.3",
3+
"version": "0.13.5",
44
"description": "A node API wrapper for Binance",
55
"main": "dist",
66
"browser": {
@@ -15,7 +15,8 @@
1515
},
1616
"files": [
1717
"dist",
18-
"index.d.ts"
18+
"index.d.ts",
19+
"types"
1920
],
2021
"scripts": {
2122
"build": "rm -rf dist && babel src -d dist",

0 commit comments

Comments
 (0)