Skip to content

Commit 6e1004c

Browse files
authored
release dlp-api v0.2.0 (#164)
1 parent 193dcd6 commit 6e1004c

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

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.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ log-cost = []
4646
logging = []
4747

4848
[dependencies]
49-
magicblock-delegation-program-api = { version = "0.1.1", path = "dlp-api", default-features = false }
49+
magicblock-delegation-program-api = { version = "0.2.0", path = "dlp-api", default-features = false }
5050
bincode = { version = "^1.3" }
5151
borsh = { version = "1.5.3", features = [ "derive" ] }
5252
bytemuck = { version = ">=1", features = [ "derive" ] }
@@ -80,7 +80,7 @@ rand = { version = "=0.8.5", features = ["small_rng"], optional = true }
8080
[dev-dependencies]
8181
assertables = "9.8.2"
8282
magicblock-delegation-program = { path = ".", features = ["unit_test_config"] }
83-
magicblock-delegation-program-api = { version = "0.1.1", path = "dlp-api" }
83+
magicblock-delegation-program-api = { version = "0.2.0", path = "dlp-api" }
8484
rand = { version = "=0.8.5", features = ["small_rng"] }
8585
solana-pubkey = "3.0.0"
8686
solana-program-test = ">=1.16"

RELEASE_PROCESS.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
Create a new branch named `release/v*.*.*` from `main`.
55

66
2. **Update the Crate Versions**
7-
Increment the version in `Cargo.toml` and in `dlp-api/Cargo.toml` for the release you are preparing.
7+
Increment the version in `dlp-api/Cargo.toml` for the release you are preparing.
8+
- Incrementing the version in dlp's `Cargo.toml` is optional, as it will not be published.
89

910
3. **Align the Release Manifests**
1011
Run `bash ./.github/version_align.sh`. This will:
@@ -20,10 +21,11 @@
2021

2122
6. **Merge and Publish**
2223
Merge the release branch into `main`, then create a new GitHub Release.
23-
This triggers the real publish flow for `magicblock-delegation-program-api` first, then `magicblock-delegation-program`.
24+
This triggers the real publish flow for `magicblock-delegation-program-api`.
25+
- Note that `magicblock-delegation-program` will not be published.
2426

2527
7. **Post-Deployment**
26-
Verify that both crates are available as expected after the GitHub Release completes.
28+
Verify that `magicblock-delegation-program-api` is available as expected after the GitHub Release completes.
2729

2830
### Notes
2931

dlp-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "magicblock-delegation-program-api"
33
description = "Public API for the Magicblock delegation program"
4-
version = "0.1.1"
4+
version = "0.2.0"
55
authors = ["Magicblock Labs <dev@magicblock.gg>"]
66
edition = "2021"
77
license = "MIT"

0 commit comments

Comments
 (0)