Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "hyperliquid-sdk"
version = "0.7.6"
version = "0.8.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Stale Python runtime version

Medium Severity

pyproject.toml was bumped to 0.8.0, but hyperliquid_sdk.__version__ in __init__.py is still 0.7.6. Package metadata and the runtime version string will disagree after release, so anything reading __version__ reports the old value.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c9cd80d. Configure here.

description = "Community SDK for Hyperliquid. One line to place orders, zero ceremony. HyperCore, HyperEVM, WebSocket and gRPC streams. Not affiliated with Hyperliquid Foundation."
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quicknode-hyperliquid-sdk"
version = "0.1.10"
version = "0.2.0"
edition = "2021"
license = "MIT"
authors = ["QuickNode <support@quicknode.com>"]
Expand Down
2 changes: 1 addition & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quicknode/hyperliquid-sdk",
"version": "0.1.10",
"version": "0.2.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lockfile version left outdated

Low Severity

package.json was bumped to 0.2.0, but package-lock.json still records 0.1.10 for the root package. The version sources disagree, which can confuse installs and release tooling that expect them to match.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c9cd80d. Configure here.

"description": "Community SDK for Hyperliquid. One line to place orders, zero ceremony. HyperCore, HyperEVM, WebSocket and gRPC streams. Not affiliated with Hyperliquid Foundation.",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
Loading