Skip to content

Commit f7bdb27

Browse files
v0.13.0 (otter-sec#587)
1 parent 609aaf4 commit f7bdb27

17 files changed

Lines changed: 54 additions & 51 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@ incremented for features.
1111

1212
## [Unreleased]
1313

14+
## [0.13.0] - 2021-08-08
15+
1416
### Features
1517

16-
* cli: Adds a [registry] section in the Anchor toml ([#570](https://github.com/project-serum/anchor/pull/570)).
17-
* cli: Adds the anchor login <api-token> command ([#570](https://github.com/project-serum/anchor/pull/570)).
18-
* cli: Adds the anchor publish <package> command ([#570](https://github.com/project-serum/anchor/pull/570)).
19-
* cli: Adds a root level anchor_version field to the Anchor.toml for specifying the cli version to build with for verifiable build ([#570](https://github.com/project-serum/anchor/pull/570)).
18+
* cli: Adds a `[registry]` section in the Anchor toml ([#570](https://github.com/project-serum/anchor/pull/570)).
19+
* cli: Adds the `anchor login <api-token>` command ([#570](https://github.com/project-serum/anchor/pull/570)).
20+
* cli: Adds the `anchor publish <package>` command ([#570](https://github.com/project-serum/anchor/pull/570)).
21+
* cli: Adds a root level `anchor_version` field to the Anchor.toml for specifying the anchor docker image to use for verifiable builds ([#570](https://github.com/project-serum/anchor/pull/570)).
22+
* cli: Adds a root level `solana_version` field to the Anchor.toml for specifying the solana toolchain to use for verifiable builds ([#570](https://github.com/project-serum/anchor/pull/570)).
2023
* lang: Dynamically fetch rent sysvar for when using `init` ([#587](https://github.com/project-serum/anchor/pull/587)).
2124

2225
### Breaking

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "anchor-cli"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["armaniferrante <armaniferrante@gmail.com>"]
55
edition = "2018"
66

@@ -35,4 +35,4 @@ tar = "0.4.35"
3535
reqwest = { version = "0.11.4", features = ["multipart", "blocking"] }
3636
tokio = "1.0"
3737
pathdiff = "0.2.0"
38-
cargo_toml = "0.9.2"
38+
cargo_toml = "0.9.2"

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": "@project-serum/anchor-cli",
3-
"version": "0.11.1",
3+
"version": "0.13.0",
44
"description": "Anchor CLI tool",
55
"homepage": "https://github.com/project-serum/anchor#readme",
66
"bugs": {

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.12.0"
3+
version = "0.13.0"
44
authors = ["Serum Foundation <foundation@projectserum.com>"]
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.12.0" }
10+
anchor-lang = { path = "../lang", version = "0.13.0" }
1111
anyhow = "1.0.32"
1212
regex = "1.4.5"
1313
serde = { version = "1.0.122", features = ["derive"] }

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.12.0"
3+
version = "0.13.0"
44
authors = ["Serum Foundation <foundation@projectserum.com>"]
55
repository = "https://github.com/project-serum/anchor"
66
edition = "2018"
@@ -23,14 +23,14 @@ anchor-debug = [
2323
]
2424

2525
[dependencies]
26-
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.12.0" }
27-
anchor-attribute-account = { path = "./attribute/account", version = "0.12.0" }
28-
anchor-attribute-error = { path = "./attribute/error", version = "0.12.0" }
29-
anchor-attribute-program = { path = "./attribute/program", version = "0.12.0" }
30-
anchor-attribute-state = { path = "./attribute/state", version = "0.12.0" }
31-
anchor-attribute-interface = { path = "./attribute/interface", version = "0.12.0" }
32-
anchor-attribute-event = { path = "./attribute/event", version = "0.12.0" }
33-
anchor-derive-accounts = { path = "./derive/accounts", version = "0.12.0" }
26+
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.13.0" }
27+
anchor-attribute-account = { path = "./attribute/account", version = "0.13.0" }
28+
anchor-attribute-error = { path = "./attribute/error", version = "0.13.0" }
29+
anchor-attribute-program = { path = "./attribute/program", version = "0.13.0" }
30+
anchor-attribute-state = { path = "./attribute/state", version = "0.13.0" }
31+
anchor-attribute-interface = { path = "./attribute/interface", version = "0.13.0" }
32+
anchor-attribute-event = { path = "./attribute/event", version = "0.13.0" }
33+
anchor-derive-accounts = { path = "./derive/accounts", version = "0.13.0" }
3434
base64 = "0.13.0"
3535
borsh = "0.9"
3636
bytemuck = "1.4.0"

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.12.0"
3+
version = "0.13.0"
44
authors = ["Serum Foundation <foundation@projectserum.com>"]
55
repository = "https://github.com/project-serum/anchor"
66
license = "Apache-2.0"
@@ -18,5 +18,5 @@ proc-macro2 = "1.0"
1818
quote = "1.0"
1919
syn = { version = "1.0.60", features = ["full"] }
2020
anyhow = "1.0.32"
21-
anchor-syn = { path = "../../syn", version = "0.12.0" }
21+
anchor-syn = { path = "../../syn", version = "0.13.0" }
2222
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.12.0"
3+
version = "0.13.0"
44
authors = ["Serum Foundation <foundation@projectserum.com>"]
55
repository = "https://github.com/project-serum/anchor"
66
license = "Apache-2.0"
@@ -18,4 +18,4 @@ proc-macro2 = "1.0"
1818
quote = "1.0"
1919
syn = { version = "1.0.60", features = ["full"] }
2020
anyhow = "1.0.32"
21-
anchor-syn = { path = "../../syn", version = "0.12.0", features = ["hash"] }
21+
anchor-syn = { path = "../../syn", version = "0.13.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.12.0"
3+
version = "0.13.0"
44
authors = ["Serum Foundation <foundation@projectserum.com>"]
55
repository = "https://github.com/project-serum/anchor"
66
license = "Apache-2.0"
@@ -17,4 +17,4 @@ anchor-debug = ["anchor-syn/anchor-debug"]
1717
proc-macro2 = "1.0"
1818
quote = "1.0"
1919
syn = { version = "1.0.60", features = ["full"] }
20-
anchor-syn = { path = "../../syn", version = "0.12.0" }
20+
anchor-syn = { path = "../../syn", version = "0.13.0" }

lang/attribute/event/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-event"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Serum Foundation <foundation@projectserum.com>"]
55
repository = "https://github.com/project-serum/anchor"
66
license = "Apache-2.0"
@@ -18,4 +18,4 @@ proc-macro2 = "1.0"
1818
quote = "1.0"
1919
syn = { version = "1.0.60", features = ["full"] }
2020
anyhow = "1.0.32"
21-
anchor-syn = { path = "../../syn", version = "0.12.0", features = ["hash"] }
21+
anchor-syn = { path = "../../syn", version = "0.13.0", features = ["hash"] }

0 commit comments

Comments
 (0)