Skip to content

Commit 00c94de

Browse files
committed
v0.17.0
1 parent 3a6a6f7 commit 00c94de

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
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.17.0] - 2025-04-21
16+
17+
### Features
18+
19+
- program update drift-version to v2.119.0[#64](https://github.com/drift-labs/jit-proxy/pull/64)
20+
21+
### Fixes
22+
23+
### Breaking
24+
1525
## [0.16.0] - 2025-04-11
1626

1727
### Features

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.

programs/jit-proxy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jit-proxy"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
description = "Created with Anchor"
55
edition = "2021"
66

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ pub fn jit_signed_msg<'c: 'info, 'info>(
199199
Ok(())
200200
}
201201

202+
#[allow(clippy::too_many_arguments)]
202203
#[inline(always)]
203204
fn process_order(
204205
maker: &User,

ts/sdk/package.json

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

ts/sdk/src/types/jit_proxy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export type JitProxy = {
2-
version: '0.12.0';
2+
version: '0.17.0';
33
name: 'jit_proxy';
44
instructions: [
55
{
@@ -382,7 +382,7 @@ export type JitProxy = {
382382
};
383383

384384
export const IDL: JitProxy = {
385-
version: '0.12.0',
385+
version: '0.17.0',
386386
name: 'jit_proxy',
387387
instructions: [
388388
{

0 commit comments

Comments
 (0)