Skip to content

Commit

Permalink
Program version bump, changelog and idl update
Browse files Browse the repository at this point in the history
  • Loading branch information
ckamm committed Jan 26, 2024
1 parent f28d665 commit 39c5d02
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 22 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ Update this for each program release and mainnet deployment.

## not on mainnet

### v0.21.2, 2024-1-

- Allow fast-listing of Openbook v1 markets (#839, #841)

## mainnet

### v0.21.1, 2024-1-

- Prevent withdraw operations from bringing token utilization over 100%.
- Prevent extreme interest rates for tokens with borrows but near zero deposits.

## mainnet

### v0.21.0, 2023-12-13

Deployment: Dec 13, 2023 at 09:02:46 Central European Standard Time, https://explorer.solana.com/tx/47BBFEugtHYciK5jHVzVtXawc7oyXKzX8o5V4ERXX3Cb7AZqmr8w6uDrFPRpyJRDccRWtuno8g2micqaFoSLC1EL
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

12 changes: 6 additions & 6 deletions mango_v4.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.21.1",
"version": "0.21.2",
"name": "mango_v4",
"instructions": [
{
Expand Down Expand Up @@ -2268,15 +2268,15 @@
{
"name": "group",
"isMut": true,
"isSigner": false,
"relations": [
"admin"
]
"isSigner": false
},
{
"name": "admin",
"isMut": false,
"isSigner": true
"isSigner": true,
"docs": [
"group admin or fast listing admin, checked at #1"
]
},
{
"name": "serumProgram",
Expand Down
2 changes: 1 addition & 1 deletion programs/mango-v4/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mango-v4"
version = "0.21.1"
version = "0.21.2"
description = "Created with Anchor"
edition = "2021"

Expand Down
24 changes: 12 additions & 12 deletions ts/client/src/mango_v4.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export type MangoV4 = {
"version": "0.21.1",
"version": "0.21.2",
"name": "mango_v4",
"instructions": [
{
Expand Down Expand Up @@ -2268,15 +2268,15 @@ export type MangoV4 = {
{
"name": "group",
"isMut": true,
"isSigner": false,
"relations": [
"admin"
]
"isSigner": false
},
{
"name": "admin",
"isMut": false,
"isSigner": true
"isSigner": true,
"docs": [
"group admin or fast listing admin, checked at #1"
]
},
{
"name": "serumProgram",
Expand Down Expand Up @@ -13529,7 +13529,7 @@ export type MangoV4 = {
};

export const IDL: MangoV4 = {
"version": "0.21.1",
"version": "0.21.2",
"name": "mango_v4",
"instructions": [
{
Expand Down Expand Up @@ -15798,15 +15798,15 @@ export const IDL: MangoV4 = {
{
"name": "group",
"isMut": true,
"isSigner": false,
"relations": [
"admin"
]
"isSigner": false
},
{
"name": "admin",
"isMut": false,
"isSigner": true
"isSigner": true,
"docs": [
"group admin or fast listing admin, checked at #1"
]
},
{
"name": "serumProgram",
Expand Down

0 comments on commit 39c5d02

Please sign in to comment.