Skip to content

Commit 93ddf23

Browse files
authored
Update versions (#533)
1 parent 268d807 commit 93ddf23

9 files changed

Lines changed: 17 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to the searcher sdks will be documented in this file.
44

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

7+
## [Rust: 0.11.0, Python 0.26.0, Javascript 0.27.0] - Unreleased
8+
9+
- Create swap instruction now uses Swap v2 of the Express Relay contract. [530](https://github.com/pyth-network/per/pull/530)
10+
711
## [Rust: 0.10.0, Python 0.25.0, Javascript 0.26.0] - 2025-04-24
812

913
- 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)

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auction-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "auction-server"
3-
version = "0.24.0"
3+
version = "0.25.0"
44
edition = "2021"
55
license-file = "license.txt"
66

auction-server/api-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "express-relay-api-types"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2021"
55
description = "Pyth Express Relay api types"
66
repository = "https://github.com/pyth-network/per"

contracts/svm/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/svm/programs/express_relay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "express-relay"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "Pyth Express Relay program for handling permissioning and bid distribution"
55
repository = "https://github.com/pyth-network/per"
66
license = "Apache-2.0"

sdk/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythnetwork/express-relay-js",
3-
"version": "0.26.0",
3+
"version": "0.27.0",
44
"description": "Utilities for interacting with the express relay protocol",
55
"homepage": "https://github.com/pyth-network/per/tree/main/sdk/js",
66
"author": "Douro Labs",

sdk/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "express-relay"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
description = "Utilities for searchers and protocols to interact with the Express Relay protocol."
55
authors = ["dourolabs"]
66
license = "Apache-2.0"

sdk/rust/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "express-relay-client"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55
description = "Pyth Express Relay client"
66
repository = "https://github.com/pyth-network/per"
77
license = "Apache-2.0"
88

99
[dependencies]
10-
express-relay-api-types = { version = "0.9.0", path = "../../auction-server/api-types" }
10+
express-relay-api-types = { version = "0.10.0", path = "../../auction-server/api-types" }
1111
reqwest = { version = "0.12.9", features = ["json"] }
1212
url = { workspace = true}
1313
serde = { workspace = true }
@@ -21,5 +21,5 @@ solana-rpc-client = { workspace = true }
2121
borsh = { workspace = true }
2222
spl-associated-token-account = { workspace = true }
2323
spl-token = { workspace = true }
24-
express-relay = { version = "0.7.0", path = "../../contracts/svm/programs/express_relay" }
24+
express-relay = { version = "0.8.0", path = "../../contracts/svm/programs/express_relay" }
2525
spl-memo-client = { workspace = true }

0 commit comments

Comments
 (0)