Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 39935ba

Browse files
authored
ac: expose ChangeLogEventV1 in crate (#3707)
1 parent 8177a4d commit 39935ba

File tree

5 files changed

+7
-19
lines changed

5 files changed

+7
-19
lines changed

account-compression/Cargo.lock

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

account-compression/programs/account-compression/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-account-compression"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "Solana Program Library Account Compression Program"
55
authors = ["Solana Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -21,7 +21,7 @@ default = []
2121
anchor-lang = "0.25.0"
2222
bytemuck = "1.8.0"
2323
spl-concurrent-merkle-tree = { version = "0.1.1", path="../../../libraries/concurrent-merkle-tree", features = [ "sol-log" ]}
24-
spl-noop = { version = "0.1.2", path="../noop", features = [ "no-entrypoint" ]}
24+
spl-noop = { version = "0.1.3", path="../noop", features = [ "no-entrypoint" ]}
2525

2626
[profile.release]
2727
overflow-checks = true

account-compression/programs/noop/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-noop"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "Solana Program Library No-op Program"
55
authors = ["Solana Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

account-compression/programs/noop/README.md

+1-13
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,4 @@
99
This is crate provides a wrapper for invoking `spl-noop`, which does nothing.
1010
It's primary use is circumventing log truncation when emitting application data by `invoke`-ing `spl-noop` with event data.
1111

12-
<p align="center">
13-
<a href="https://solana.com">
14-
<img alt="Solana" src="https://i.imgur.com/IKyzQ6T.png" width="250" />
15-
</a>
16-
</p>
17-
18-
# SPL Account Compression Rust SDK (Beta)
19-
20-
More information about account compression can be found in [the solana-program-library repo](https://github.com/solana-labs/solana-program-library/tree/master/account-compression).
21-
22-
The [Solana Program Examples repo](https://github.com/solana-developers/program-examples) will eventually include examples of how to use this program.
23-
24-
`spl-noop` and this crate's implementation are targeted towards supporting [account-compression](https://github.com/solana-labs/solana-program-library/tree/master/account-compression) and may be subject to change.
12+
`spl-noop` and this crate's implementation are targeted towards supporting [account-compression](https://github.com/solana-labs/solana-program-library/tree/master/account-compression) and may be subject to change.

account-compression/sdk/idl/spl_account_compression.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.1.1",
2+
"version": "0.1.3",
33
"name": "spl_account_compression",
44
"instructions": [
55
{

0 commit comments

Comments
 (0)