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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to the searcher sdks will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Rust: 0.11.0, Python 0.26.0, Javascript 0.27.0] - Unreleased

- Create swap instruction now uses Swap v2 of the Express Relay contract. [530](https://github.com/pyth-network/per/pull/530)

## [Rust: 0.10.0, Python 0.25.0, Javascript 0.26.0] - 2025-04-24

- Support for EVM chains has been removed. The SDKs no longer support EVM-compatible chains. [495](https://github.com/pyth-network/per/pull/495) [513](https://github.com/pyth-network/per/pull/513) [516](https://github.com/pyth-network/per/pull/516)
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auction-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auction-server"
version = "0.24.0"
version = "0.25.0"
edition = "2021"
license-file = "license.txt"

Expand Down
2 changes: 1 addition & 1 deletion auction-server/api-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "express-relay-api-types"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "Pyth Express Relay api types"
repository = "https://github.com/pyth-network/per"
Expand Down
2 changes: 1 addition & 1 deletion contracts/svm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/svm/programs/express_relay/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "express-relay"
version = "0.7.0"
version = "0.8.0"
description = "Pyth Express Relay program for handling permissioning and bid distribution"
repository = "https://github.com/pyth-network/per"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion sdk/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pythnetwork/express-relay-js",
"version": "0.26.0",
"version": "0.27.0",
"description": "Utilities for interacting with the express relay protocol",
"homepage": "https://github.com/pyth-network/per/tree/main/sdk/js",
"author": "Douro Labs",
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "express-relay"
version = "0.25.0"
version = "0.26.0"
description = "Utilities for searchers and protocols to interact with the Express Relay protocol."
authors = ["dourolabs"]
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions sdk/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "express-relay-client"
version = "0.10.0"
version = "0.11.0"
edition = "2021"
description = "Pyth Express Relay client"
repository = "https://github.com/pyth-network/per"
license = "Apache-2.0"

[dependencies]
express-relay-api-types = { version = "0.9.0", path = "../../auction-server/api-types" }
express-relay-api-types = { version = "0.10.0", path = "../../auction-server/api-types" }
reqwest = { version = "0.12.9", features = ["json"] }
url = { workspace = true}
serde = { workspace = true }
Expand All @@ -21,5 +21,5 @@ solana-rpc-client = { workspace = true }
borsh = { workspace = true }
spl-associated-token-account = { workspace = true }
spl-token = { workspace = true }
express-relay = { version = "0.7.0", path = "../../contracts/svm/programs/express_relay" }
express-relay = { version = "0.8.0", path = "../../contracts/svm/programs/express_relay" }
spl-memo-client = { workspace = true }
Loading