Skip to content

Commit 719602e

Browse files
v0.4.0 (#144)
1 parent 8289e47 commit 719602e

File tree

19 files changed

+50
-52
lines changed

19 files changed

+50
-52
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ incremented for features.
1111

1212
## [Unreleased]
1313

14+
## [0.4.0] - 2021-04-04
15+
1416
## Features
1517

1618
* cli: Specify test files to run ([#118](https://github.com/project-serum/anchor/pull/118)).

Cargo.lock

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

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anchor-cli"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["armaniferrante <[email protected]>"]
55
edition = "2018"
66

cli/src/template.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cpi = ["no-entrypoint"]
2828
default = []
2929
3030
[dependencies]
31-
anchor-lang = "0.3.0"
31+
anchor-lang = "0.4.0"
3232
"#,
3333
name,
3434
name.to_snake_case(),

client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "anchor-client"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Serum Foundation <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"
77
description = "Rust client for Anchor programs"
88

99
[dependencies]
10-
anchor-lang = { path = "../lang", version = "0.3.0" }
10+
anchor-lang = { path = "../lang", version = "0.4.0" }
1111
anyhow = "1.0.32"
1212
regex = "1.4.5"
1313
solana-client = "1.6.3"

docs/src/getting-started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rustup component add rustfmt
1515

1616
## Install Solana
1717

18-
See the solana [docs](https://docs.solana.com/cli/install-solana-cli-tools) for installation instructions. Version 1.5.5 is required. On macOS and Linux,
18+
See the solana [docs](https://docs.solana.com/cli/install-solana-cli-tools) for installation instructions. Version 1.6.3 is required. On macOS and Linux,
1919

2020
```bash
2121
sh -c "$(curl -sSfL https://release.solana.com/v1.6.3/install)"
@@ -34,7 +34,7 @@ npm install -g mocha
3434
For now, we can use Cargo to install the CLI.
3535

3636
```bash
37-
cargo install --git https://github.com/project-serum/anchor anchor-cli --locked
37+
cargo install --git https://github.com/project-serum/anchor --tag v0.4.0 anchor-cli --locked
3838
```
3939

4040
On Linux systems you may need to install additional dependencies. On Ubuntu,

lang/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anchor-lang"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Serum Foundation <[email protected]>"]
55
repository = "https://github.com/project-serum/anchor"
66
edition = "2018"
@@ -12,14 +12,14 @@ derive = []
1212
default = []
1313

1414
[dependencies]
15-
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.3.0" }
16-
anchor-attribute-account = { path = "./attribute/account", version = "0.3.0" }
17-
anchor-attribute-error = { path = "./attribute/error", version = "0.3.0" }
18-
anchor-attribute-program = { path = "./attribute/program", version = "0.3.0" }
19-
anchor-attribute-state = { path = "./attribute/state", version = "0.3.0" }
20-
anchor-attribute-interface = { path = "./attribute/interface", version = "0.3.0" }
21-
anchor-derive-accounts = { path = "./derive/accounts", version = "0.3.0" }
22-
anchor-attribute-event = { path = "./attribute/event", version = "0.3.0" }
15+
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.4.0" }
16+
anchor-attribute-account = { path = "./attribute/account", version = "0.4.0" }
17+
anchor-attribute-error = { path = "./attribute/error", version = "0.4.0" }
18+
anchor-attribute-program = { path = "./attribute/program", version = "0.4.0" }
19+
anchor-attribute-state = { path = "./attribute/state", version = "0.4.0" }
20+
anchor-attribute-interface = { path = "./attribute/interface", version = "0.4.0" }
21+
anchor-derive-accounts = { path = "./derive/accounts", version = "0.4.0" }
22+
anchor-attribute-event = { path = "./attribute/event", version = "0.4.0" }
2323
borsh = "0.8.2"
2424
solana-program = "1.6.3"
2525
thiserror = "1.0.20"

lang/attribute/access-control/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anchor-attribute-access-control"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Serum Foundation <[email protected]>"]
55
repository = "https://github.com/project-serum/anchor"
66
license = "Apache-2.0"
@@ -15,5 +15,5 @@ proc-macro2 = "1.0"
1515
quote = "1.0"
1616
syn = { version = "1.0.60", features = ["full"] }
1717
anyhow = "1.0.32"
18-
anchor-syn = { path = "../../syn", version = "0.3.0" }
18+
anchor-syn = { path = "../../syn", version = "0.4.0" }
1919
regex = "1.0"

lang/attribute/account/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anchor-attribute-account"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Serum Foundation <[email protected]>"]
55
repository = "https://github.com/project-serum/anchor"
66
license = "Apache-2.0"
@@ -15,4 +15,4 @@ proc-macro2 = "1.0"
1515
quote = "1.0"
1616
syn = { version = "1.0.60", features = ["full"] }
1717
anyhow = "1.0.32"
18-
anchor-syn = { path = "../../syn", version = "0.3.0", features = ["hash"] }
18+
anchor-syn = { path = "../../syn", version = "0.4.0", features = ["hash"] }

lang/attribute/error/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anchor-attribute-error"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Serum Foundation <[email protected]>"]
55
repository = "https://github.com/project-serum/anchor"
66
license = "Apache-2.0"
@@ -14,4 +14,4 @@ proc-macro = true
1414
proc-macro2 = "1.0"
1515
quote = "1.0"
1616
syn = { version = "1.0.60", features = ["full"] }
17-
anchor-syn = { path = "../../syn", version = "0.3.0" }
17+
anchor-syn = { path = "../../syn", version = "0.4.0" }

0 commit comments

Comments
 (0)