Skip to content

Commit 0499751

Browse files
v1.0.0-rc.5 (#4344)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e42ab8a commit 0499751

File tree

83 files changed

+117
-109
lines changed

Some content is hidden

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

83 files changed

+117
-109
lines changed

CHANGELOG.md

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

1313
### Features
1414

15+
### Fixes
16+
17+
### Breaking
18+
19+
## [1.0.0-rc.5] - 2026-03-20
20+
21+
### Features
22+
1523
- lang, cli, client: Updated solana dependencies to the latest compatible versions. Bumping CI and docker builds to use Solana CLI version 3.1.10 ([#4317](https://github.com/solana-foundation/anchor/pull/4317/))
1624

1725
### Fixes

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.0.0-rc.4"
17+
version = "1.0.0-rc.5"
1818

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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0-rc.4
1+
1.0.0-rc.5

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ dev = []
1818
idl-localnet-testing = []
1919

2020
[dependencies]
21-
anchor-client = { path = "../client", version = "1.0.0-rc.4" }
22-
anchor-lang = { path = "../lang", version = "1.0.0-rc.4" }
21+
anchor-client = { path = "../client", version = "1.0.0-rc.5" }
22+
anchor-lang = { path = "../lang", version = "1.0.0-rc.5" }
2323
anchor-lang-idl = { path = "../idl", version = "0.1.2", features = ["build", "convert"] }
2424
anyhow = "1.0.32"
2525
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": "@anchor-lang/cli",
3-
"version": "1.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"description": "Anchor CLI tool",
55
"homepage": "https://github.com/solana-foundation/anchor#readme",
66
"bugs": {

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ debug = []
1818
mock = []
1919

2020
[dependencies]
21-
anchor-lang = { path = "../lang", version = "1.0.0-rc.4" }
21+
anchor-lang = { path = "../lang", version = "1.0.0-rc.5" }
2222
anyhow = "1"
2323
futures = "0.3"
2424
regex = "1"

client/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
//!
4646
//! More examples can be found in [here].
4747
//!
48-
//! [here]: https://github.com/solana-foundation/anchor/tree/v1.0.0-rc.4/client/example/src
48+
//! [here]: https://github.com/solana-foundation/anchor/tree/v1.0.0-rc.5/client/example/src
4949
//!
5050
//! # Features
5151
//!
@@ -54,7 +54,7 @@
5454
//! The client is blocking by default. To enable asynchronous client, add `async` feature:
5555
//!
5656
//! ```toml
57-
//! anchor-client = { version = "1.0.0-rc.4 ", features = ["async"] }
57+
//! anchor-client = { version = "1.0.0-rc.5 ", features = ["async"] }
5858
//! ````
5959
//!
6060
//! ## `mock`

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.0.0-rc.4
2+
ANCHOR_CLI=v1.0.0-rc.5
33
# Solana toolchain.
44
SOLANA_CLI=v3.1.10
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.0.0-rc.4",
3+
"version": "1.0.0-rc.5",
44
"license": "(MIT OR Apache-2.0)",
55
"homepage": "https://github.com/solana-foundation/anchor#readme",
66
"bugs": {

0 commit comments

Comments
 (0)