Skip to content

Commit b10c649

Browse files
committed
bump for release
1 parent 2be6299 commit b10c649

File tree

4 files changed

+57
-28
lines changed

4 files changed

+57
-28
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ repository = "https://github.com/buffalojoec/mollusk"
1616
readme = "README.md"
1717
license = "MIT"
1818
edition = "2021"
19-
version = "0.0.12"
19+
version = "0.0.13"
2020

2121
[workspace.dependencies]
2222
bincode = "1.3.3"
2323
bs58 = "0.5.1"
2424
criterion = "0.5.1"
2525
ed25519-dalek = "=1.0.1"
2626
libsecp256k1 = "0.6.0"
27-
mollusk-svm = { path = "harness", version = "0.0.12" }
28-
mollusk-svm-bencher = { path = "bencher", version = "0.0.12" }
29-
mollusk-svm-error = { path = "error", version = "0.0.12" }
30-
mollusk-svm-fuzz-fixture = { path = "fuzz/fixture", version = "0.0.12" }
31-
mollusk-svm-fuzz-fixture-firedancer = { path = "fuzz/fixture-fd", version = "0.0.12" }
32-
mollusk-svm-fuzz-fs = { path = "fuzz/fs", version = "0.0.12" }
33-
mollusk-svm-keys = { path = "keys", version = "0.0.12" }
34-
mollusk-svm-programs-memo = { path = "programs/memo", version = "0.0.12" }
35-
mollusk-svm-programs-token = { path = "programs/token", version = "0.0.12" }
27+
mollusk-svm = { path = "harness", version = "0.0.13" }
28+
mollusk-svm-bencher = { path = "bencher", version = "0.0.13" }
29+
mollusk-svm-error = { path = "error", version = "0.0.13" }
30+
mollusk-svm-fuzz-fixture = { path = "fuzz/fixture", version = "0.0.13" }
31+
mollusk-svm-fuzz-fixture-firedancer = { path = "fuzz/fixture-fd", version = "0.0.13" }
32+
mollusk-svm-fuzz-fs = { path = "fuzz/fs", version = "0.0.13" }
33+
mollusk-svm-keys = { path = "keys", version = "0.0.13" }
34+
mollusk-svm-programs-memo = { path = "programs/memo", version = "0.0.13" }
35+
mollusk-svm-programs-token = { path = "programs/token", version = "0.0.13" }
3636
num-format = "0.4.4"
3737
prost = "0.10"
3838
prost-build = "0.10"

crate_order.txt

Lines changed: 0 additions & 9 deletions
This file was deleted.

scripts/publish.sh

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#!/bin/bash
2+
3+
set -e
4+
set -u
5+
set -o pipefail
6+
7+
CRATES=(
8+
"mollusk-svm-error"
9+
"mollusk-svm-keys"
10+
"mollusk-svm-fuzz-fs"
11+
"mollusk-svm-fuzz-fixture"
12+
"mollusk-svm-fuzz-fixture-firedancer"
13+
"mollusk-svm"
14+
"mollusk-svm-bencher"
15+
"mollusk-svm-programs-memo"
16+
"mollusk-svm-programs-token"
17+
)
18+
19+
publish_crate() {
20+
local crate=$1
21+
local args=$2
22+
23+
echo "Publishing $crate..."
24+
25+
cargo publish -p $crate --token $TOKEN $args
26+
27+
echo "$crate published successfully!"
28+
29+
sleep 5
30+
}
31+
32+
# Publish each crate in order
33+
for crate in "${CRATES[@]}"; do
34+
publish_crate "$crate" $1
35+
done
36+
37+
echo "All crates published successfully!"
38+

0 commit comments

Comments
 (0)