Skip to content

Commit 28a47c3

Browse files
authored
Merge pull request #13 from trixter-osec/release/v1.1.11-rc.8
v1.1.11-rc.8
2 parents 8a05b71 + 08dfdef commit 28a47c3

84 files changed

Lines changed: 121 additions & 113 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ The minor version will be incremented upon a breaking change and the patch versi
1616

1717
### Breaking
1818

19+
## [1.1.11-rc.8] - 2026-03-19
20+
21+
### Features
22+
23+
### Fixes
24+
25+
### Breaking
26+
1927
## [1.1.11-rc.7] - 2026-03-18
2028

2129
### Features

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exclude = ["tests/cfo/deps/openbook-dex", "tests/swap/deps/openbook-dex"]
1414
resolver = "2"
1515

1616
[workspace.package]
17-
version = "1.1.11-rc.7"
17+
version = "1.1.11-rc.8"
1818

1919
[workspace.dependencies]
2020
solana-account = "3.0.0"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.11-rc.7
1+
1.1.11-rc.8

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ name = "anchor_cli"
1919
dev = []
2020

2121
[dependencies]
22-
trixter-osec-anchor-client = { path = "../client", version = "1.1.11-rc.7" }
23-
trixter-osec-anchor-lang = { path = "../lang", version = "1.1.11-rc.7" }
22+
trixter-osec-anchor-client = { path = "../client", version = "1.1.11-rc.8" }
23+
trixter-osec-anchor-lang = { path = "../lang", version = "1.1.11-rc.8" }
2424
trixter-osec-anchor-lang-idl = { path = "../idl", version = "0.1.2", features = ["build", "convert"] }
2525
anyhow = "1.0.32"
2626
base64 = "0.21"

cli/npm-package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@trixter-osec/cli",
3-
"version": "1.1.11-rc.7",
3+
"version": "1.1.11-rc.8",
44
"description": "Anchor CLI tool",
55
"homepage": "https://github.com/coral-xyz/anchor#readme",
66
"bugs": {

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ debug = []
2020
mock = []
2121

2222
[dependencies]
23-
trixter-osec-anchor-lang = { path = "../lang", version = "1.1.11-rc.7" }
23+
trixter-osec-anchor-lang = { path = "../lang", version = "1.1.11-rc.8" }
2424
anyhow = "1"
2525
futures = "0.3"
2626
regex = "1"

client/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
//!
5151
//! More examples can be found in [here].
5252
//!
53-
//! [here]: https://github.com/coral-xyz/anchor/tree/v1.1.11-rc.7/client/example/src
53+
//! [here]: https://github.com/coral-xyz/anchor/tree/v1.1.11-rc.8/client/example/src
5454
//!
5555
//! # Features
5656
//!
@@ -59,7 +59,7 @@
5959
//! The client is blocking by default. To enable asynchronous client, add `async` feature:
6060
//!
6161
//! ```toml
62-
//! anchor-client = { version = "1.1.11-rc.7 ", features = ["async"] }
62+
//! anchor-client = { version = "1.1.11-rc.8 ", features = ["async"] }
6363
//! ````
6464
//!
6565
//! ## `mock`
@@ -887,11 +887,11 @@ mod tests {
887887
#[test]
888888
fn test_parse_logs_response_fake_pop() -> Result<()> {
889889
let logs = [
890-
"Program fake11111111111111111111111111111111111.1.11-rc.7 invoke [1]",
890+
"Program fake11111111111111111111111111111111111.1.11-rc.8 invoke [1]",
891891
"Program log: i logged success",
892892
"Program log: i logged success",
893-
"Program fake11111111111111111111111111111111111.1.11-rc.7 consumed 1411 of 200000 compute units",
894-
"Program fake11111111111111111111111111111111111.1.11-rc.7 success"
893+
"Program fake11111111111111111111111111111111111.1.11-rc.8 consumed 1411 of 200000 compute units",
894+
"Program fake11111111111111111111111111111111111.1.11-rc.8 success"
895895
];
896896

897897
// Converting to Vec<String> as expected in `RpcLogsResponse`

docker/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Anchor version.
2-
ANCHOR_CLI=v1.1.11-rc.7
2+
ANCHOR_CLI=v1.1.11-rc.8
33
# Solana toolchain.
44
SOLANA_CLI=v2.3.0
55
# Build version should match the Anchor cli version.

examples/tutorial/basic-0/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "basic-0",
3-
"version": "1.1.11-rc.7",
3+
"version": "1.1.11-rc.8",
44
"license": "(MIT OR Apache-2.0)",
55
"homepage": "https://github.com/coral-xyz/anchor#readme",
66
"bugs": {

0 commit comments

Comments
 (0)