Skip to content

Commit f86f24f

Browse files
committed
v0.15.2
1 parent aabb0d2 commit f86f24f

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212

1313
### Breaking
1414

15+
## [0.15.1] - 2025-03-24
16+
17+
### Features
18+
19+
### Fixes
20+
21+
- program: fix program/jit-proxy/Cargo.toml
22+
23+
### Breaking
24+
1525
## [0.15.0] - 2025-03-23
1626

1727
### Features

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

programs/jit-proxy/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jit-proxy"
3-
version = "0.15.0"
3+
version = "0.15.2"
44
description = "Created with Anchor"
55
edition = "2021"
66

@@ -17,7 +17,7 @@ default = []
1717
anchor-lang = "0.29.0"
1818
anchor-spl = "0.29.0"
1919
bytemuck = { version = "1.4.0" }
20-
drift = { git = "https://github.com/drift-labs/protocol-v2.git", commit = "c5ccc9bb2a9a8061c77dc6727fa0c5da0e7a6f01", features = ["cpi", "mainnet-beta"]}
20+
drift = { git = "https://github.com/drift-labs/protocol-v2.git", rev = "c5ccc9bb2a9a8061c77dc6727fa0c5da0e7a6f01", features = ["cpi", "mainnet-beta"]}
2121
static_assertions = "1.1.0"
2222
solana-program = "1.16"
2323
ahash = "=0.8.6"

programs/jit-proxy/src/instructions/jit.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ fn process_order(
262262
slot,
263263
tick_size,
264264
is_prediction_market,
265-
false,
265+
None,
266266
)? {
267267
Some(price) => price,
268268
None if market_type == DriftMarketType::Perp => {

ts/sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@drift-labs/jit-proxy",
3-
"version": "0.15.1",
3+
"version": "0.15.2",
44
"scripts": {
55
"clean": "rm -rf lib",
66
"build": "yarn clean && tsc"

0 commit comments

Comments
 (0)